We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Convert trace results so that Bamboo and Jenkins can read the test results
The text was updated successfully, but these errors were encountered:
Thanks, I'll keep this in mind as one of the output formats when working on #2
Sorry, something went wrong.
@johandk89 I'm not familiar with Xunit. Can you point me to any resources on the specifications of the output?
Xunit/Junit is a format needed to parse test results in Bamboo, jenkins and Hudson. Here is a sample
http://stackoverflow.com/questions/4922867/junit-xml-format-specification-that-hudson-supports
<testsuite tests="3"> <testcase classname="foo" name="ASuccessfulTest"/> <testcase classname="foo" name="AnotherSuccessfulTest"/> <testcase classname="foo" name="AFailingTest"> <failure type="NotEnoughFoo"> details about failure </failure> </testcase> </testsuite>
No branches or pull requests
Convert trace results so that Bamboo and Jenkins can read the test results
The text was updated successfully, but these errors were encountered: