From 724abf2a02b817d33f9f5b151a02a8cfa8151ef5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Sat, 2 Jan 2021 20:23:30 +0100 Subject: [PATCH] python3Packages.pyro4: Fix tests on darwin --- pkgs/development/python-modules/pyro4/default.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pyro4/default.nix b/pkgs/development/python-modules/pyro4/default.nix index 713b257a195..c5211162c65 100644 --- a/pkgs/development/python-modules/pyro4/default.nix +++ b/pkgs/development/python-modules/pyro4/default.nix @@ -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 ]; - }; + }; }