python.pkgs.pyzmq: disable flaky test

Recently failed on staging.
This commit is contained in:
Timo Kaufmann 2019-03-16 19:42:59 +01:00
parent 92ed05be3b
commit 4f2d842a98

View file

@ -22,12 +22,14 @@ buildPythonPackage rec {
# test_socket.py seems to be hanging
# others fail
# for test_monitor: https://github.com/zeromq/pyzmq/issues/1272
checkPhase = ''
py.test $out/${python.sitePackages}/zmq/ -k "not test_socket \
and not test_current \
and not test_instance \
and not test_callable_check \
and not test_on_recv_basic \
and not test_on_recv_wake"
and not test_on_recv_wake \
and not test_monitor"
'';
}