From 0659d4e295e1545dda256aaf48828ee21d90f098 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Fri, 23 Jun 2023 17:12:37 -0700 Subject: [PATCH] fix --- scripts/benchmark.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/benchmark.py b/scripts/benchmark.py index ddc6227ce..6d81d8d08 100644 --- a/scripts/benchmark.py +++ b/scripts/benchmark.py @@ -147,12 +147,15 @@ def run_tests(): for test_file in test_files: dump(test_file) try: - result = subprocess.run(["pytest", test_file], capture_output=True, text=True, timeout=60) + result = subprocess.run( + ["pytest", test_file], capture_output=True, text=True, timeout=60 + ) print(result.stdout) print(result.stderr) except subprocess.TimeoutExpired: all_tests_passed = False print(f"Test {test_file} timed out") + continue if result.returncode != 0: all_tests_passed = False