From 7228951fc86a794ab806671e1d0fc34cc5f99418 Mon Sep 17 00:00:00 2001 From: Chris Cummins Date: Tue, 19 Apr 2022 15:50:51 -0700 Subject: [PATCH] Bump timeout on GCC smoke test to 10 min. --- examples/gcc_autotuning/tune_test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/gcc_autotuning/tune_test.py b/examples/gcc_autotuning/tune_test.py index 30d592c4b..cadab187b 100644 --- a/examples/gcc_autotuning/tune_test.py +++ b/examples/gcc_autotuning/tune_test.py @@ -60,6 +60,7 @@ def gcc_bin(request) -> str: return request.param +@pytest.mark.timeout(600) @pytest.mark.parametrize("search", ["random", "hillclimb", "genetic"]) def test_tune_smoke_test(search: str, gcc_bin: str, capsys, tmpdir: Path): tmpdir = Path(tmpdir)