diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-07-09 16:41:35 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-07-09 16:41:39 +0200 |
commit | 46d3ab9f58d586fd1024f5837fcfd05a9d090e12 (patch) | |
tree | 01903cea901aebdb8cf234e87b7f76d9fa5407d2 /test/py/lib/process.py | |
parent | test: don't wait for hanging processes (diff) | |
download | cimple-46d3ab9f58d586fd1024f5837fcfd05a9d090e12.tar.gz cimple-46d3ab9f58d586fd1024f5837fcfd05a9d090e12.zip |
test: increase timeouts
All the new added tests require more time.
Diffstat (limited to 'test/py/lib/process.py')
-rw-r--r-- | test/py/lib/process.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/py/lib/process.py b/test/py/lib/process.py index d478c32..40fb9bc 100644 --- a/test/py/lib/process.py +++ b/test/py/lib/process.py @@ -183,7 +183,7 @@ class Process(subprocess.Popen): # so that it doesn't attempt to read from closed descriptors. super().__exit__(*args) - SHUT_DOWN_TIMEOUT_SEC = 3 + SHUT_DOWN_TIMEOUT_SEC = 10 def shut_down(self): ec = self.poll() |