jstemmer / go-junit-report

Convert Go test output to JUnit XML
MIT License
764 stars 222 forks source link

Add the skipped attribute to the <testsuite> #116

Closed Rots closed 2 years ago

Rots commented 3 years ago

The JUnit XML also has a counter for the skipped tests, would be useful to have.

<testsuite name="some name" errors="0" skipped="1" tests="3" failures="1" ...