pythonPackages.manhole: disable tests (#52666)

`python: process-tests: 1.2.1 -> 2.0.0` included the change
e6d4f4db27
which removed setup_coverage and thus broke manhole's tests.
This commit is contained in:
Ivan Kozik 2018-12-22 09:53:35 +00:00 committed by Robert Schütz
parent 2088ae10a3
commit 12dcd34097
1 changed files with 4 additions and 1 deletions

View File

@ -19,7 +19,10 @@ buildPythonPackage rec {
#
# {test_locals,test_socket_path} fail to remove /tmp/manhole-socket
# on the x86_64-darwin builder.
doCheck = stdenv.isLinux;
#
# TODO: change this back to `doCheck = stdenv.isLinux` after
# https://github.com/ionelmc/python-manhole/issues/54 is fixed
doCheck = false;
checkInputs = [ pytest requests process-tests ];
checkPhase = ''