Skip to content

Commit

Permalink
circleci: add junit-results
Browse files Browse the repository at this point in the history
  • Loading branch information
vinceau committed Oct 4, 2019
1 parent 0a8ceb3 commit d6dfddf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,12 @@ jobs:
go get -u golang.org/x/lint/golint
go get -u github.com/loongy/covermerge
go get -u github.com/mattn/goveralls
go get -u github.com/jstemmer/go-junit-report
- run:
name: Run tests
command: go test -v ./...
command: go test -v ./... 2>&1 | go-junit-report > report.xml
- store_test_results:
path: report.xml
- run:
name: Run task examples
command: ./examples/run_examples.sh
Expand Down

0 comments on commit d6dfddf

Please sign in to comment.