CircleCI supports rendering test failures through the use of JUnit files, but it only supports a subset of features.
One such feature is failure test outputs. The spec suggests that stdout
and stderr
contents be captured and added to the <system-out>
and <system-err>
elements respectively.
CircleCI instead only reads the data from the <failure>
tag only.
This crate provides 2 avenues to address this. If you're in an environment where you can use XLST, then you can make use of the circleci-junit-fix.xsl file to transform existing junit files into ones that circle-ci can interpret.
Otherwise, this repo also provides a static binary that performs the equivalent operation.
sh
cargo install --locked --version 0.1.0
sh
curl -sSL https://github.com/conradludgate/circleci-junit-fix/releases/download/v0.1.0/circleci-junit-fix-v0.1.0-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=/usr/bin
sh
cat path/to/junit/report.xml | circleci-junit-fix > fixed-report.xml