pythonPackages.pytest-arraydiff: fix infinite recursion

This commit is contained in:
Sébastien Maret 2019-07-17 12:21:29 +02:00 committed by Frederik Rietdijk
parent 124fb417fc
commit 2dabd051a7

View File

@ -22,14 +22,10 @@ buildPythonPackage rec {
pytest pytest
]; ];
checkInputs = [ # The tests requires astropy, which itself requires
pytest # pytest-arraydiff. This causes an infinite recursion if the tests
astropy # are enabled.
]; doCheck = false;
checkPhase = ''
pytest
'';
meta = with lib; { meta = with lib; {
description = "Pytest plugin to help with comparing array output from tests"; description = "Pytest plugin to help with comparing array output from tests";