From 12dcd3409702d7782f92dbc2d268092261911a32 Mon Sep 17 00:00:00 2001 From: Ivan Kozik Date: Sat, 22 Dec 2018 09:53:35 +0000 Subject: [PATCH] pythonPackages.manhole: disable tests (#52666) `python: process-tests: 1.2.1 -> 2.0.0` included the change https://github.com/ionelmc/python-process-tests/commit/e6d4f4db27f61ebeb9dc451c12b8fb846d0f3728 which removed setup_coverage and thus broke manhole's tests. --- pkgs/development/python-modules/manhole/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/manhole/default.nix b/pkgs/development/python-modules/manhole/default.nix index 8c8c6bf35018..1dc90e66683b 100644 --- a/pkgs/development/python-modules/manhole/default.nix +++ b/pkgs/development/python-modules/manhole/default.nix @@ -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 = ''