summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan van Berkom <tristan.vanberkom@codethink.co.uk>2020-08-03 17:27:15 +0900
committerTristan van Berkom <tristan.vanberkom@codethink.co.uk>2020-08-03 17:27:15 +0900
commit8fdcef563c97e201ded182de647e30f4ac410599 (patch)
tree22edfa424f799a74fb14b23fa8bae11c91b13dfd
parent7f0e0205c066f6ad3e4cb2cb8d719c8022d68ab9 (diff)
downloadbuildstream-8fdcef563c97e201ded182de647e30f4ac410599.tar.gz
tests/format/variables.py: Increase timeout
With sometimes very slow runners, this test has been found to timeout more often after the recent refactoring. Double the timeout to avoid erronously failing CI.
-rw-r--r--tests/format/variables.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/format/variables.py b/tests/format/variables.py
index 2f436fc75..38f35037c 100644
--- a/tests/format/variables.py
+++ b/tests/format/variables.py
@@ -97,7 +97,7 @@ def test_undefined(cli, datafiles, element, provenance):
],
ids=["simple", "simple-text", "indirect", "self-reference"],
)
-@pytest.mark.timeout(15, method="signal")
+@pytest.mark.timeout(30, method="signal")
@pytest.mark.datafiles(os.path.join(DATA_DIR, "cyclic_variables"))
def test_circular_reference(cli, datafiles, element, provenances):
print_warning("Performing cyclic test, if this test times out it will exit the test sequence")