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:
parent
2088ae10a3
commit
12dcd34097
|
@ -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 = ''
|
||||
|
|
Loading…
Reference in New Issue