Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/samhammerag/trxtohtml
https://github.com/samhammerag/trxtohtml
Last synced: 23 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/samhammerag/trxtohtml
- Owner: SamhammerAG
- Created: 2020-10-07T19:11:50.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-07-07T12:02:25.000Z (over 2 years ago)
- Last Synced: 2023-03-02T05:55:51.289Z (almost 2 years ago)
- Language: C#
- Size: 92.8 KB
- Stars: 4
- Watchers: 5
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TrxToHtml
With this tool you can convert trx text results into an readable html report.
![Screenshot](TestResults.png)
## Installation
```shell
dotnet tool install -g Samhammer.TrxToHtml
```## Usage
generate trx results (*.trx) with dotnet test and then just execute trx-to-html in the same/parent folder to generate report (TestResults.html).```shell
dotnet test -l trx
trx-to-html
```## Options
to list all options use help```shell
trx-to-html --help
```## Contribute
#### How to publish package
- set package version in TrxToHtml.csproj
- create git tag
- dotnet pack -c Release
- nuget push .\bin\Release\Samhammer.TrxToHtml.*.nupkg NUGET_API_KEY -src https://api.nuget.org/v3/index.json
- (optional) nuget setapikey NUGET_API_KEY -source https://api.nuget.org/v3/index.json