diff --git a/pkgs/development/python-modules/path.py/default.nix b/pkgs/development/python-modules/path.py/default.nix index f9f74858149..fc20624e3fa 100644 --- a/pkgs/development/python-modules/path.py/default.nix +++ b/pkgs/development/python-modules/path.py/default.nix @@ -39,6 +39,7 @@ buildPythonPackage rec { checkPhase = '' # Ignore pytest configuration rm pytest.ini - py.test test_path.py + # ignore performance test which may fail when the system is under load + py.test -v -k 'not TestPerformance' test_path.py ''; }