summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2020-04-24 09:05:51 +0200
committerJürg Billeter <j@bitron.ch>2020-04-24 09:12:18 +0200
commit0024c4688d1633612626e4513951d71d5bd02bc6 (patch)
treea864f0b8c93e19628234be8457a0219260167a95
parentf84defbf519ec855d1c2beacef6c8c341c75e27d (diff)
downloadbuildstream-0024c4688d1633612626e4513951d71d5bd02bc6.tar.gz
tests/testutils/constants.py: Increase pexpect timeouts
CI runners sometimes need more time under load.
-rw-r--r--tests/testutils/constants.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/testutils/constants.py b/tests/testutils/constants.py
index e14624143..e95d4428e 100644
--- a/tests/testutils/constants.py
+++ b/tests/testutils/constants.py
@@ -5,11 +5,11 @@
#
# Use this for operations that are expected to finish within a short amount of
# time. Like `bst init`, `bst show` on a small project.
-PEXPECT_TIMEOUT_SHORT = 5
+PEXPECT_TIMEOUT_SHORT = 30
# Timeout for longer interactive operations (in seconds).
#
# Use this for operations that are expected to take longer amounts of time,
# like `bst build` on a small project.
-PEXPECT_TIMEOUT_LONG = 60
+PEXPECT_TIMEOUT_LONG = 300