pythonPackages.z3c-checkversions: disable python2 tests

the zope namespace will cause collisions for python2
This commit is contained in:
Jonathan Ringer 2020-03-16 12:58:14 -07:00 committed by Jon
parent 780ee0d2d5
commit ee9362f880

View file

@ -18,6 +18,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ zc_buildout ];
checkInputs = [ zope_testrunner ];
doCheck = !python.pkgs.isPy27;
checkPhase = ''
${python.interpreter} -m zope.testrunner --test-path=src []
'';