Skip to content

Commit

Permalink
python.pkgs.pyzmq: disable flaky test
Browse files Browse the repository at this point in the history
Recently failed on staging.
  • Loading branch information
timokau committed Mar 16, 2019
1 parent 92ed05b commit 4f2d842
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/development/python-modules/pyzmq/default.nix
Expand Up @@ -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"
'';
}

0 comments on commit 4f2d842

Please sign in to comment.