From 4f2d842a98ebc4b1d393e6061f30a4e726220b47 Mon Sep 17 00:00:00 2001 From: Timo Kaufmann Date: Sat, 16 Mar 2019 19:42:59 +0100 Subject: [PATCH] python.pkgs.pyzmq: disable flaky test Recently failed on staging. --- pkgs/development/python-modules/pyzmq/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pyzmq/default.nix b/pkgs/development/python-modules/pyzmq/default.nix index 5d02c33fa90..dcab96d12a6 100644 --- a/pkgs/development/python-modules/pyzmq/default.nix +++ b/pkgs/development/python-modules/pyzmq/default.nix @@ -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" ''; }