Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/u2takey/junit2html
junit2html
https://github.com/u2takey/junit2html
Last synced: 15 days ago
JSON representation
junit2html
- Host: GitHub
- URL: https://github.com/u2takey/junit2html
- Owner: u2takey
- Created: 2021-11-17T12:31:20.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2021-11-18T03:10:46.000Z (almost 3 years ago)
- Last Synced: 2024-10-10T20:08:43.561Z (28 days ago)
- Language: Go
- Size: 1.34 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# junit2html
## Install
```bash
go install github.com/u2takey/junit2html@latest
```## Usage
```bash
# usage1: convert junit test xml to html
./junit2html ./test.xml ./output/report.html# usage2: convert go test output to html
go test -v ./... | ./junit2html ./output/index.html --open
```## Demo
![demo1](./examples/example1.gif)
![demo2](./examples/example2.gif)
## Refer
- [go-junit-report](https://github.com/jstemmer/go-junit-report)
- [junit2html](https://github.com/inorton/junit2html)