aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorChristian Tismer <tismer@stackless.com>2022-05-16 12:17:30 +0200
committerChristian Tismer <tismer@stackless.com>2022-05-17 09:01:23 +0200
commit4a92abf5082e4ffcc76a1ed241af06c8f7ebe461 (patch)
treed023d1ab0ae7d1e1a03228eddd4819b4ae089fd7 /testing
parent071cd570cff179ec3de405f78ab62b593097647e (diff)
testing: Increase the timeout for debug builds
Certain tests use more time when testing a build with debug Python. Some tests also do more work when debugging is enabled. This led to unclear stops in debug build tests, resulting in critical information missing from the test log. Changing the timeout from 10 to 20 minutes does no harm and solves the issue. Task-number: PYSIDE-1735 Change-Id: Icd30d36186d1559e3991c1f2e83d0179cffa2d6c Pick-to: 6.3 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'testing')
-rw-r--r--testing/command.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/command.py b/testing/command.py
index 172039adb..0ca4af71b 100644
--- a/testing/command.py
+++ b/testing/command.py
@@ -87,7 +87,7 @@ from .runner import TestRunner
COIN_RERUN_FAILED_ONLY = True
COIN_THRESHOLD = 3 # report error if >=
COIN_TESTING = 5 # number of runs
-TIMEOUT = 10 * 60
+TIMEOUT = 20 * 60
if os.environ.get("COIN_RERUN_FAILED_ONLY", "1").lower() in "0 f false n no".split():
COIN_RERUN_FAILED_ONLY = False