From 979b88b2bc7a3242b489008c72c7a3eba5bdf7eb Mon Sep 17 00:00:00 2001 From: Timo Kaufmann Date: Wed, 19 Dec 2018 23:53:17 +0100 Subject: [PATCH] pythonPackages.pathpy: skip performance test (#52548) The test may fail non-deterministically, as it does right now on hydra. --- pkgs/development/python-modules/path.py/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/path.py/default.nix b/pkgs/development/python-modules/path.py/default.nix index f9f748581499..fc20624e3fa7 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 ''; }