Skip to content

Instantly share code, notes, and snippets.

@jperras
Created March 22, 2011 20:42
Show Gist options
  • Save jperras/882006 to your computer and use it in GitHub Desktop.
Save jperras/882006 to your computer and use it in GitHub Desktop.
xUnit format
<?xml version="1.0" encoding="UTF-8"?>
<testsuite name="nosetests" tests="1" errors="1" failures="0" skip="0">
<testcase classname="path_to_test_suite.TestSomething"
name="test_it" time="0">
<error type="exceptions.TypeError" message="oops, wrong type">
Traceback (most recent call last):
...
TypeError: oops, wrong type
</error>
</testcase>
</testsuite>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment