python3Packages.pyro4: Fix tests on darwin

This commit is contained in:
Sandro Jäckel 2021-01-02 20:23:30 +01:00
parent 854096fa4f
commit 724abf2a02
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -32,10 +32,15 @@ buildPythonPackage rec {
]; ];
checkInputs = [ pytestCheckHook ]; checkInputs = [ pytestCheckHook ];
# add testsupport.py to PATH # add testsupport.py to PATH
preCheck = "PYTHONPATH=tests/PyroTests:$PYTHONPATH"; preCheck = "PYTHONPATH=tests/PyroTests:$PYTHONPATH";
# ignore network related tests, which fail in sandbox # ignore network related tests, which fail in sandbox
pytestFlagsArray = [ "--ignore=tests/PyroTests/test_naming.py" ]; pytestFlagsArray = [ "--ignore=tests/PyroTests/test_naming.py" ]
# test hangs on darwin with sandbox enabled
++ lib.optionals stdenv.isDarwin [ "--ignore=tests/PyroTests/test_daemon.py" ];
disabledTests = [ disabledTests = [
"StartNSfunc" "StartNSfunc"
"Broadcast" "Broadcast"