From 47122e18bd506eed90ca87323d82ef5dc4e4c7aa Mon Sep 17 00:00:00 2001 From: Tom Hunger Date: Wed, 1 Jun 2016 10:43:22 +0100 Subject: [PATCH] pythonPackages.distributed: Disable failing tests. --- pkgs/top-level/python-packages.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c5ea75dd72f..2c881a3fc17 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4782,9 +4782,9 @@ in modules // { psutil botocore ] ++ (if !isPy3k then [ singledispatch ] else []); - checkPhase = '' - py.test -m "not avoid_travis" distributed --verbose - ''; + # py.test not picking up local config file, even when running + # manually: E ValueError: no option named '--runslow' + doCheck = false; meta = { description = "Distributed computation in Python.";