File: skip_large_send.patch

package info (click to toggle)
pyzmq 27.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,984 kB
  • sloc: python: 15,189; ansic: 285; makefile: 169; sh: 85
file content (21 lines) | stat: -rw-r--r-- 656 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From: Julian Taylor <jtaylor.debian@googlemail.com>
Date: Wed, 24 Aug 2016 22:28:17 +0200
Subject: Skip large send test

... to avoid swapping on low memory machines.
---
 tests/test_socket.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tests/test_socket.py b/tests/test_socket.py
index a3967cb..d230b3a 100644
--- a/tests/test_socket.py
+++ b/tests/test_socket.py
@@ -686,6 +686,7 @@ class TestSocket(BaseZMQTestCase):
 
     # CI often can't handle how much memory PyPy uses on this test
     @mark.skipif(
+        True or
         (pypy and on_ci) or (sys.maxsize < 2**32) or (windows),
         reason="only run on 64b and not on CI.",
     )