This is a customized fork of Trxer by NivNavick.
- Target .NET Core 3.1
- Simpler layout
- Handles output from SpecFlow showing gherkin
- Handled both images embedded by SpecFlow and embedding external images
- Click images to show them zoomed in modal dialog
- Custom title shows Bamboo build directory
If appropriate Bamboo environment variables are available then the report includes:
- Bamboo branch name along with build number
- Branch name is hyperlinked to results URL page
Example Bamboo environment variables, as PowerShell settings:
- $env:bamboo_resultsUrl = 'https://code.company.com/bamboo/browse/APP-CAA-BCE-825';
- $env:bamboo_planRepository_branchName = 'develop';
- $env:bamboo_buildNumber = '825';
PS> dotnet .\TrxReporter.dll --input <path-to-trx> [--output <output-path>] [--title <title>]
On Linux, use parameter:value delimeter for example
PS> dotnet .\TrxReporter.dll --input:<path-to-trx> [--output:<output-path>] [--title:<title>]
-
--input path can be absolute or relative
--output path can be a directory or file, absolute or relative. If no filename is specified then the .trx filename is used.
--title of the report, default is "Testing Report"
TrxerConsole: https://github.com/NivNavick/trxer/tree/master/TrxerConsole