Skip to content

Commit

Permalink
Update aggregate_tests.py
Browse files Browse the repository at this point in the history
Decrease the verbosity of the test runner so that only test failures are shown.
  • Loading branch information
vladimir-v-diaz committed Jan 21, 2016
1 parent 5d19975 commit ddec8ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/aggregate_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,6 @@

if __name__ == '__main__':
suite = unittest.TestLoader().loadTestsFromNames(tests_without_extension)
all_tests_passed = unittest.TextTestRunner(verbosity=2).run(suite).wasSuccessful()
all_tests_passed = unittest.TextTestRunner(verbosity=1).run(suite).wasSuccessful()
if not all_tests_passed:
sys.exit(1)

0 comments on commit ddec8ab

Please sign in to comment.