pythonPackages.pathpy: skip performance test (#52548)

The test may fail non-deterministically, as it does right now on hydra.
This commit is contained in:
Timo Kaufmann
2018-12-19 23:53:17 +01:00
committed by GitHub
parent 53ea46b450
commit 979b88b2bc

View File

@@ -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
'';
}