forked from pool/python314
- Move compression folder to python-base where it should be. This
module is used internally in gzip.py. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:Factory/python314?expand=0&rev=93
This commit is contained in:
21
subprocess-raise-timeout.patch
Normal file
21
subprocess-raise-timeout.patch
Normal file
@@ -0,0 +1,21 @@
|
||||
---
|
||||
Lib/test/test_subprocess.py | 6 +++++-
|
||||
1 file changed, 5 insertions(+), 1 deletion(-)
|
||||
|
||||
Index: Python-3.14.0b1/Lib/test/test_subprocess.py
|
||||
===================================================================
|
||||
--- Python-3.14.0b1.orig/Lib/test/test_subprocess.py 2025-05-09 10:36:08.150615546 +0200
|
||||
+++ Python-3.14.0b1/Lib/test/test_subprocess.py 2025-05-09 10:36:21.907614565 +0200
|
||||
@@ -160,7 +160,11 @@
|
||||
# child.
|
||||
self.assertRaises(subprocess.TimeoutExpired, subprocess.call,
|
||||
[sys.executable, "-c", "while True: pass"],
|
||||
- timeout=0.1)
|
||||
+ # Some heavily loaded buildbots (sparc Debian 3.x) require
|
||||
+ # this much time to start and print.
|
||||
+ # timeout=3)
|
||||
+ # OBS might require even more
|
||||
+ timeout=10)
|
||||
|
||||
def test_timeout_exception(self):
|
||||
try:
|
||||
Reference in New Issue
Block a user