test: check the number of tests that ran
Fail if the number of excuted tests != number of dicovered tests.
This commit is contained in:
parent
2c141950b0
commit
197c326530
@ -186,4 +186,8 @@ def main():
|
||||
runner = ComposerTestRunner(failfast=args.sit)
|
||||
result = runner.run(tests)
|
||||
|
||||
if tests.countTestCases() != result.testsRun:
|
||||
print("Error: unexpected number of tests were run", file=sys.stderr)
|
||||
sys.exit(1)
|
||||
|
||||
sys.exit(not result.wasSuccessful())
|
||||
|
Loading…
Reference in New Issue
Block a user