From a80628091180c8566ff3ae90f53cad9320ab889f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Fri, 6 Apr 2018 20:41:33 +0200 Subject: [PATCH] python.pkgs.futures: fix tests --- pkgs/development/python-modules/futures/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/futures/default.nix b/pkgs/development/python-modules/futures/default.nix index c0c389d49d19..5a774b6fa3d5 100644 --- a/pkgs/development/python-modules/futures/default.nix +++ b/pkgs/development/python-modules/futures/default.nix @@ -13,12 +13,9 @@ buildPythonPackage rec { disabled = isPy3k; checkPhase = '' - ${python.interpreter} -m unittest discover + ${python.interpreter} test_futures.py ''; - # Tests fail - doCheck = false; - meta = with lib; { description = "Backport of the concurrent.futures package from Python 3.2"; homepage = "https://github.com/agronholm/pythonfutures";