From af17bae209c857b48c6ff1b5756628de6f8ebc20 Mon Sep 17 00:00:00 2001 From: Renato Alves Date: Mon, 13 Apr 2020 12:32:01 +0200 Subject: [PATCH] pythonPackages.cherrypy: disable failing test --- pkgs/development/python-modules/cherrypy/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/cherrypy/default.nix b/pkgs/development/python-modules/cherrypy/default.nix index e37f2cb470e..778f57e0f9b 100644 --- a/pkgs/development/python-modules/cherrypy/default.nix +++ b/pkgs/development/python-modules/cherrypy/default.nix @@ -44,7 +44,11 @@ buildPythonPackage rec { # Disable doctest plugin because times out checkPhase = '' substituteInPlace pytest.ini --replace "--doctest-modules" "" - pytest --deselect=cherrypy/test/test_static.py::StaticTest::test_null_bytes ${stdenv.lib.optionalString stdenv.isDarwin "--deselect=cherrypy/test/test_bus.py::BusMethodTests::test_block"} + pytest \ + --deselect=cherrypy/test/test_static.py::StaticTest::test_null_bytes \ + --deselect=cherrypy/test/test_tools.py::ToolTests::testCombinedTools \ + ${stdenv.lib.optionalString stdenv.isDarwin + "--deselect=cherrypy/test/test_bus.py::BusMethodTests::test_block"} ''; meta = with stdenv.lib; {