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.
1 parent a3c60c4 commit 3d02b1dCopy full SHA for 3d02b1d
build.py
@@ -160,7 +160,9 @@ def unstable_unit_test():
160
"""
161
Run all unstable unit tests.
162
163
- utility.exec_command('pytest -s -v -m unstable {}'.format(get_active_test_filepaths()),
+ runid = str(uuid.uuid1())
164
+ utility.exec_command('pytest --doctest-modules --junitxml=junit/test-unstable-{}-results.xml '
165
+ '-s -v -m unstable {}'.format(runid, get_active_test_filepaths()),
166
utility.ROOT_DIR, continue_on_error=False)
167
168
0 commit comments