From fae343857244a7985c567e001d67b5dc5caf9533 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Tue, 2 Jul 2019 23:36:09 +0200 Subject: [PATCH] python.pkgs.numpy: don't exclude f2py test anymore It is on PATH, and the tests pass. --- pkgs/development/python-modules/numpy/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/numpy/default.nix b/pkgs/development/python-modules/numpy/default.nix index a02e7ee4c5f5..a66694dc477b 100644 --- a/pkgs/development/python-modules/numpy/default.nix +++ b/pkgs/development/python-modules/numpy/default.nix @@ -60,10 +60,9 @@ in buildPythonPackage rec { inherit blasImplementation cfg; }; - # Disable two tests - # - test_f2py: f2py isn't yet on path. + # Disable test # - test_large_file_support: takes a long time and can cause the machine to run out of disk space - NOSE_EXCLUDE="test_f2py,test_large_file_support"; + NOSE_EXCLUDE="test_large_file_support"; meta = { description = "Scientific tools for Python";