You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, when a mandatory test fails, the test runner exists with the following:
$ python -m datatest
.......F
==========================================================
FAIL: <test name here>
<traceback here>
datatest.error.DataError: mandatory test failed, stopping
early: data does not satisfy object requirement:
Invalid('Some Invalid Code')
----------------------------------------------------------
Ran 8 tests in 1.764s
FAILED (failures=1)
The summary at the end should, more prominently, indicate that not all the tests were run:
$ python -m datatest
.......F
==========================================================
FAIL: test_<test name here>
<traceback here>
datatest.error.DataError: mandatory test: data does not
satisfy object requirement:
Invalid('Some Invalid Code')
----------------------------------------------------------
Ran 8 tests in 1.764s
MANDATORY TEST FAILED, STOPPING EARLY
The text was updated successfully, but these errors were encountered:
Currently, when a mandatory test fails, the test runner exists with the following:
The summary at the end should, more prominently, indicate that not all the tests were run:
The text was updated successfully, but these errors were encountered: