Fixed disabled/broken augmenters tests

This commit is contained in:
rakesh Gupta 2020-02-15 11:22:22 +05:30 committed by Jon
parent 03d5f9cf1f
commit e94a84a144
1 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,7 @@
{ buildPythonPackage { buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, imageio , imageio
, imagecorruptions
, numpy , numpy
, opencv3 , opencv3
, pytest , pytest
@ -33,6 +34,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ propagatedBuildInputs = [
imageio imageio
imagecorruptions
numpy numpy
opencv3 opencv3
scikitimage scikitimage
@ -41,9 +43,8 @@ buildPythonPackage rec {
six six
]; ];
# augmenters requires a significant increase in packages requires
checkPhase = '' checkPhase = ''
pytest ./test --ignore=test/augmenters pytest ./test
''; '';
checkInputs = [ opencv3 pytest ]; checkInputs = [ opencv3 pytest ];