diff options
author | Jake Hunsaker <jhunsake@redhat.com> | 2022-06-28 15:45:49 -0400 |
---|---|---|
committer | Jake Hunsaker <jhunsake@redhat.com> | 2022-07-01 10:55:08 -0400 |
commit | 9e0852d4ad3cb43f9bd334f35f222dd583fba2cf (patch) | |
tree | 834df31808c6bcf3b2655624f3f9a953039f8900 /tests | |
parent | dea4a481ea25e446272b8220f866aaa8ede1dcb8 (diff) | |
download | sos-9e0852d4ad3cb43f9bd334f35f222dd583fba2cf.tar.gz |
[tests] Increase default timeout
For our CI tests, CPU resources are not guaranteed which in turn can
cause longer-than-expected run times for test executions. In practice,
this is only seen occasionally but it requires manual intervention when
the timeouts are hit (and thus far it has been seen that the changes
these timeouts are hit on are not actually causing the timeouts).
Previous conversations have revolved around improving test efficiency,
however this seems unlikely given the nature of some of the test setup
and further, even with the most efficienct approach possible we would
still be at the whim of resource availability.
As such, increase the default timeout to account for this resource
consideration.
Closes: #2700
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/sos_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/sos_tests.py b/tests/sos_tests.py index b7f7243c..705e8a38 100644 --- a/tests/sos_tests.py +++ b/tests/sos_tests.py @@ -65,7 +65,7 @@ class BaseSoSTest(Test): _tmpdir = None _exception_expected = False sos_cmd = '' - sos_timeout = 300 + sos_timeout = 600 redhat_only = False ubuntu_only = False end_of_test_case = False |