pythonPackages.parameterized: disable tests for python38
This commit is contained in:
parent
6dc311dbce
commit
ceeeeeaf41
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchPypi, buildPythonPackage, nose, mock, glibcLocales, isPy3k }:
|
{ stdenv, fetchPypi, buildPythonPackage, nose, mock, glibcLocales, isPy3k, isPy38 }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "parameterized";
|
pname = "parameterized";
|
||||||
@ -10,7 +10,8 @@ buildPythonPackage rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
# Tests require some python3-isms but code works without.
|
# Tests require some python3-isms but code works without.
|
||||||
doCheck = isPy3k;
|
# python38 is not fully supported yet
|
||||||
|
doCheck = isPy3k && (!isPy38);
|
||||||
|
|
||||||
checkInputs = [ nose mock glibcLocales ];
|
checkInputs = [ nose mock glibcLocales ];
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user