pythonPackages.cytoolz: fix test runner, disable tests for 3.5
This commit is contained in:
parent
541fe51a51
commit
a161800865
|
@ -3311,10 +3311,12 @@ in modules // {
|
|||
buildInputs = with self; [ nose ];
|
||||
|
||||
checkPhase = ''
|
||||
nosetests cytoolz/tests
|
||||
nosetests -v $out/${python.sitePackages}
|
||||
'';
|
||||
|
||||
doCheck = false; # Cannot import the extension module
|
||||
# Several tests fail with Python 3.5
|
||||
# https://github.com/pytoolz/cytoolz/issues/73
|
||||
doCheck = !isPy35;
|
||||
|
||||
meta = {
|
||||
homepage = "http://github.com/pytoolz/cytoolz/";
|
||||
|
|
Loading…
Reference in New Issue