diff --git a/run_tests b/run_tests index 3e0e5016..bb7ca915 100755 --- a/run_tests +++ b/run_tests @@ -63,7 +63,9 @@ def main(argv): run_flake8, run_isort, ) - return 0 if all(not c() for c in checks) else 1 + # Run all the tests all the time to get full feedback. Don't exit on the + # first error as that makes it more difficult to iterate in the CQ. + return 1 if sum(c() for c in checks) else 0 if __name__ == "__main__":