mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
50 lines
1.4 KiB
Markdown
50 lines
1.4 KiB
Markdown
|
# go-junit-report
|
||
|
|
||
|
Converts `go test` output to an xml report, suitable for applications that
|
||
|
expect junit xml reports (e.g. [Jenkins](http://jenkins-ci.org)).
|
||
|
|
||
|
[![Build Status][travis-badge]][travis-link]
|
||
|
[![Report Card][report-badge]][report-link]
|
||
|
|
||
|
## Installation
|
||
|
|
||
|
Go version 1.2 or higher is required. Install or update using the `go get`
|
||
|
command:
|
||
|
|
||
|
```bash
|
||
|
go get -u github.com/jstemmer/go-junit-report
|
||
|
```
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
go-junit-report reads the `go test` verbose output from standard in and writes
|
||
|
junit compatible XML to standard out.
|
||
|
|
||
|
```bash
|
||
|
go test -v 2>&1 | go-junit-report > report.xml
|
||
|
```
|
||
|
|
||
|
Note that it also can parse benchmark output with `-bench` flag:
|
||
|
```bash
|
||
|
go test -v -bench . -count 5 2>&1 | go-junit-report > report.xml
|
||
|
```
|
||
|
|
||
|
## Contribution
|
||
|
|
||
|
Create an Issue and discuss the fix or feature, then fork the package.
|
||
|
Clone to github.com/jstemmer/go-junit-report. This is necessary because go import uses this path.
|
||
|
Fix or implement feature. Test and then commit change.
|
||
|
Specify #Issue and describe change in the commit message.
|
||
|
Create Pull Request. It can be merged by owner or administrator then.
|
||
|
|
||
|
### Run Tests
|
||
|
|
||
|
```bash
|
||
|
go test
|
||
|
```
|
||
|
|
||
|
[travis-badge]: https://travis-ci.org/jstemmer/go-junit-report.svg
|
||
|
[travis-link]: https://travis-ci.org/jstemmer/go-junit-report
|
||
|
[report-badge]: https://goreportcard.com/badge/github.com/jstemmer/go-junit-report
|
||
|
[report-link]: https://goreportcard.com/report/github.com/jstemmer/go-junit-report
|