summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pytest-arraydiff
diff options
context:
space:
mode:
authorSébastien Maret <sebastien.maret@icloud.com>2019-07-17 12:21:29 +0200
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2019-07-27 11:58:50 +0200
commit2dabd051a7a910d94bc2a9819dcf0719802056dc (patch)
treeb0b141b5ba90aeaaf4528c1aa31c03e826e21e69 /pkgs/development/python-modules/pytest-arraydiff
parent124fb417fcc89f2787510c30d07fb0fff4407ccf (diff)
pythonPackages.pytest-arraydiff: fix infinite recursion
Diffstat (limited to 'pkgs/development/python-modules/pytest-arraydiff')
-rw-r--r--pkgs/development/python-modules/pytest-arraydiff/default.nix12
1 files changed, 4 insertions, 8 deletions
diff --git a/pkgs/development/python-modules/pytest-arraydiff/default.nix b/pkgs/development/python-modules/pytest-arraydiff/default.nix
index 4a59e22d1365..e01d26b530ec 100644
--- a/pkgs/development/python-modules/pytest-arraydiff/default.nix
+++ b/pkgs/development/python-modules/pytest-arraydiff/default.nix
@@ -22,14 +22,10 @@ buildPythonPackage rec {
pytest
];
- checkInputs = [
- pytest
- astropy
- ];
-
- checkPhase = ''
- pytest
- '';
+ # The tests requires astropy, which itself requires
+ # pytest-arraydiff. This causes an infinite recursion if the tests
+ # are enabled.
+ doCheck = false;
meta = with lib; {
description = "Pytest plugin to help with comparing array output from tests";