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 ];
# add testsupport.py to PATH
preCheck = "PYTHONPATH=tests/PyroTests:$PYTHONPATH";
# 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 = [
"StartNSfunc"
"Broadcast"
@ -47,5 +52,5 @@ buildPythonPackage rec {
homepage = "https://github.com/irmen/Pyro4";
license = licenses.mit;
maintainers = with maintainers; [ prusnak ];
};
};
}