mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Merge pull request #108253 from SuperSandro2000/pyro3-darwin
python3Packages.Pyro4: Fix tests on darwin
This commit is contained in:
commit
92a391c20b
1 changed files with 7 additions and 2 deletions
|
@ -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 ];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue