3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request from berdario/master

Skip nonreproducible Util test in paramiko
This commit is contained in:
Domen Kožar 2014-12-19 10:59:56 +01:00
commit 71316f7c42

View file

@ -6404,6 +6404,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
'';