summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xrun_tests4
1 files changed, 3 insertions, 1 deletions
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):
63 run_flake8, 63 run_flake8,
64 run_isort, 64 run_isort,
65 ) 65 )
66 return 0 if all(not c() for c in checks) else 1 66 # Run all the tests all the time to get full feedback. Don't exit on the
67 # first error as that makes it more difficult to iterate in the CQ.
68 return 1 if sum(c() for c in checks) else 0
67 69
68 70
69if __name__ == "__main__": 71if __name__ == "__main__":