We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Related to #210
When using subTest the subtests will be counted in the "tests" attribute but no testcase element is generated so the numbers won't match.
Example for a single test with 1 out of 2 subtests failing:
<testsuites> <testsuite name="pytest" errors="0" failures="1" skipped="0" tests="2" [snip]> <testcase classname="MiscTests" name="test_pytree_tree_leaves" time="13.493" file="dynamo/test_misc.py"> <failure message=" [snip]">[snip]</failure> <system-out>[snip]</system-out> </testcase> </testsuite> </testsuites>
Is this (also) expected or could this be fixed?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Related to #210
When using subTest the subtests will be counted in the "tests" attribute but no testcase element is generated so the numbers won't match.
Example for a single test with 1 out of 2 subtests failing:
Is this (also) expected or could this be fixed?
The text was updated successfully, but these errors were encountered: