SHA256
1
0
forked from pool/python-pyzmq
python-pyzmq/skip_test_tracker.patch
Matej Cepl fff7603583 Accepting request 850785 from home:adamm:branches:devel:libraries:c_c++
- update to version 20.0.0:
  * fix build with ZeroMQ 4.3.3
  * drops support for Python < 3.5
  * Respect $PKG_CONFIG env for finding libzmq when building from source
  * :meth:`.Socket.bind` and :meth:`.Socket.connect`
    can now be used as context managers.
  * Hold GIL while calling ``zmq_curve_`` functions,
    which may fix apparent threadsafety issues.
- skip_test_tracker.patch: refreshed

OBS-URL: https://build.opensuse.org/request/show/850785
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyzmq?expand=0&rev=91
2020-11-25 19:58:48 +00:00

11 lines
431 B
Diff

--- a/zmq/tests/test_socket.py.orig 2015-06-18 19:46:28.000000000 +0200
+++ b/zmq/tests/test_socket.py 2015-09-08 17:34:13.309795000 +0200
@@ -216,6 +216,7 @@
@skip_pypy
def test_tracker(self):
"test the MessageTracker object for tracking when zmq is done with a buffer"
+ raise SkipTest("test_tracker test skiped")
addr = 'tcp://127.0.0.1'
# get a port:
sock = socket.socket()