diff options
author | Jürg Billeter <j@bitron.ch> | 2020-04-24 09:11:43 +0200 |
---|---|---|
committer | Jürg Billeter <j@bitron.ch> | 2020-04-24 09:12:18 +0200 |
commit | 350880fbb36a6f6bc4704a589309e1239a88fb7d (patch) | |
tree | 53a5dda9c50eff0a0659e370776e1371a62650bd | |
parent | 0024c4688d1633612626e4513951d71d5bd02bc6 (diff) | |
download | buildstream-juerg/test-timeouts.tar.gz |
tests/format/variables.py: Increase timeout for test_cyclic_variablesjuerg/test-timeouts
CI runners sometimes need more time under load.
-rw-r--r-- | tests/format/variables.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/format/variables.py b/tests/format/variables.py index 11a34ee07..ecc1e2b12 100644 --- a/tests/format/variables.py +++ b/tests/format/variables.py @@ -61,7 +61,7 @@ def test_missing_variable(cli, datafiles, element): result.assert_main_error(ErrorDomain.LOAD, LoadErrorReason.UNRESOLVED_VARIABLE) -@pytest.mark.timeout(3, method="signal") +@pytest.mark.timeout(15, method="signal") @pytest.mark.datafiles(os.path.join(DATA_DIR, "cyclic_variables")) def test_cyclic_variables(cli, datafiles): print_warning("Performing cyclic test, if this test times out it will " + "exit the test sequence") |