forked from pool/python-python-gvm
running in OBS with limited resources, running on 1-core-VM. bsc#1233398 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-gvm?expand=0&rev=16
19 lines
821 B
Diff
19 lines
821 B
Diff
Index: python_gvm-24.8.0/tests/connections/test_unix_socket_connection.py
|
|
===================================================================
|
|
--- python_gvm-24.8.0.orig/tests/connections/test_unix_socket_connection.py
|
|
+++ python_gvm-24.8.0/tests/connections/test_unix_socket_connection.py
|
|
@@ -62,6 +62,13 @@ class UnixSocketConnectionTestCase(unitt
|
|
connection.disconnect()
|
|
|
|
def test_unix_socket_connection_connect_send_bytes_read(self):
|
|
+ # Add sleep to make sure setup theading server is up and
|
|
+ # running even with limited resources, bsc#1233398
|
|
+ import time
|
|
+ import multiprocessing
|
|
+ if multiprocessing.cpu_count() == 1:
|
|
+ time.sleep(2)
|
|
+
|
|
connection = UnixSocketConnection(
|
|
path=self.socket_name, timeout=DEFAULT_TIMEOUT
|
|
)
|