Crates.io | cargo2junit |
lib.rs | cargo2junit |
version | 0.1.13 |
source | src |
created_at | 2019-02-16 22:58:20.594814 |
updated_at | 2023-04-02 23:57:33.118813 |
description | Converts cargo's json output (from stdin) to JUnit XML (to stdout) |
homepage | |
repository | https://github.com/johnterickson/cargo2junit |
max_upload_size | |
id | 115262 |
size | 733,321 |
Converts cargo's json output (from stdin) to JUnit XML (to stdout).
To use, first install:
cargo install cargo2junit
Then, run cargo test and convert:
cargo test -- -Z unstable-options --format json --report-time | cargo2junit > results.xml
Or, use tee for streaming output to console as the tests run:
cargo test -- -Z unstable-options --format json --report-time | tee results.json
cat results.json | cargo2junit > results.xml
Once you have your XML, publish it (e.g. for Azure Pipelines):
- task: PublishTestResults@2
inputs:
testResultsFormat: 'JUnit'
testResultsFiles: 'test_results.xml'
condition: succeededOrFailed()