Skip to content

Commit ddec8ab

Browse files
Update aggregate_tests.py
Decrease the verbosity of the test runner so that only test failures are shown.
1 parent 5d19975 commit ddec8ab

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/aggregate_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,6 @@
6464

6565
if __name__ == '__main__':
6666
suite = unittest.TestLoader().loadTestsFromNames(tests_without_extension)
67-
all_tests_passed = unittest.TextTestRunner(verbosity=2).run(suite).wasSuccessful()
67+
all_tests_passed = unittest.TextTestRunner(verbosity=1).run(suite).wasSuccessful()
6868
if not all_tests_passed:
6969
sys.exit(1)

0 commit comments

Comments
 (0)