From d1f9d97569f2f3494755e79c48b8b6e89bac2c2a Mon Sep 17 00:00:00 2001 From: Dario Bertini Date: Tue, 9 Dec 2014 17:21:53 +0100 Subject: Skip nonreproducible Util test in paramiko --- pkgs/top-level/python-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 55f36979ccaa..c35b3f825dd6 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6311,6 +6311,7 @@ let # https://github.com/paramiko/paramiko/issues/449 doCheck = !(isPyPy || isPy33); checkPhase = '' + sed '/UtilTest/d' -i test.py ${python}/bin/${python.executable} test.py --no-sftp --no-big-file ''; -- cgit v1.2.3 From 4ac75c3f79d007bf524dcda2a376a46bb2d9d531 Mon Sep 17 00:00:00 2001 From: Dario Bertini Date: Tue, 9 Dec 2014 18:16:17 +0100 Subject: Add paramiko test removal comment --- pkgs/top-level/python-packages.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c35b3f825dd6..ec14f43c0086 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6311,7 +6311,9 @@ let # https://github.com/paramiko/paramiko/issues/449 doCheck = !(isPyPy || isPy33); checkPhase = '' + # test_util needs to resolve an hostname, thus failing when the fw blocks it sed '/UtilTest/d' -i test.py + ${python}/bin/${python.executable} test.py --no-sftp --no-big-file ''; -- cgit v1.2.3