aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Tismer <tismer@stackless.com>2022-05-16 12:17:30 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2022-05-17 09:25:59 +0000
commit25db4ad2e5e5cb6b90e84b7d24b90478ffcf4d49 (patch)
treef188a18e699d960ad9474bea7b72a14316744ee4
parent7b4120f4c70b09511a72dbd764762af22f2d2949 (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 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io> (cherry picked from commit 4a92abf5082e4ffcc76a1ed241af06c8f7ebe461) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-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