From d1f2376bd19ee98a4332a6fbc2823ecff2b2de64 Mon Sep 17 00:00:00 2001
From: Julian Taylor <jtaylor.debian@googlemail.com>
Date: Wed, 20 Apr 2016 20:37:35 +0200
Subject: skip large send test

to avoid swapping on low memory machines

Patch-Name: skip_large_send
---
 zmq/tests/test_socket.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/zmq/tests/test_socket.py b/zmq/tests/test_socket.py
index 9ca832c..6b3ae7c 100644
--- a/zmq/tests/test_socket.py
+++ b/zmq/tests/test_socket.py
@@ -437,7 +437,7 @@ class TestSocket(BaseZMQTestCase):
         self.assertEqual(rcvd, b'hi')
     
     # Travis can't handle how much memory PyPy uses on this test
-    @skip_if(platform.python_implementation() and os.environ.get('TRAVIS_PYTHON_VERSION'))
+    @skip_if(True or platform.python_implementation() and os.environ.get('TRAVIS_PYTHON_VERSION'))
     def test_large_send(self):
         try:
             buf = os.urandom(1) * (2**31 + 1)
