diff options
-rwxr-xr-x | run_tests | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 | ||
69 | if __name__ == "__main__": | 71 | if __name__ == "__main__": |