summary refs log tree commit diff
path: root/pkgs/development/python-modules/numpy
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2019-07-02 23:36:09 +0200
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2019-07-27 12:19:03 +0200
commitfae343857244a7985c567e001d67b5dc5caf9533 (patch)
tree2264cd8dfcc7e6a251d6de883ae0f1f09a0c30c8 /pkgs/development/python-modules/numpy
parent0f6bda38fe1148d191cf619e69cb47f17cc184cf (diff)
downloadnixpkgs-fae343857244a7985c567e001d67b5dc5caf9533.tar
nixpkgs-fae343857244a7985c567e001d67b5dc5caf9533.tar.gz
nixpkgs-fae343857244a7985c567e001d67b5dc5caf9533.tar.bz2
nixpkgs-fae343857244a7985c567e001d67b5dc5caf9533.tar.lz
nixpkgs-fae343857244a7985c567e001d67b5dc5caf9533.tar.xz
nixpkgs-fae343857244a7985c567e001d67b5dc5caf9533.tar.zst
nixpkgs-fae343857244a7985c567e001d67b5dc5caf9533.zip
python.pkgs.numpy: don't exclude f2py test anymore
It is on PATH, and the tests pass.
Diffstat (limited to 'pkgs/development/python-modules/numpy')
-rw-r--r--pkgs/development/python-modules/numpy/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/numpy/default.nix b/pkgs/development/python-modules/numpy/default.nix
index a02e7ee4c5f..a66694dc477 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";