diff --git a/scripts/benchmark.py b/scripts/benchmark.py index e996d9f9b..2604f8874 100644 --- a/scripts/benchmark.py +++ b/scripts/benchmark.py @@ -146,7 +146,7 @@ def run_tests(): for test_file in test_files: dump(test_file) - result = subprocess.run(["pytest", test_file], capture_output=True, text=True) + result = subprocess.run(["pytest", test_file], capture_output=True, text=True, timeout=60) print(result.stdout) print(result.stderr)