pythonPackages.zope-deferredimport: disable tests

relies on zope-testrunner. Import fails, likely because of how
zope-testrunner functions.
This commit is contained in:
Frederik Rietdijk 2019-10-17 12:35:51 +02:00
parent b5e481a07e
commit a110c8e69d
2 changed files with 3 additions and 1 deletions

View File

@ -23,6 +23,8 @@ buildPythonPackage rec {
zope-testrunner --test-path=src []
'';
doCheck = false;
meta = with lib; {
description = "Allows you to perform imports names that will only be resolved when used in the code";
homepage = https://github.com/zopefoundation/zope.deferredimport;

View File

@ -19,7 +19,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ zope_interface zope_exceptions zope_testing six ];
doCheck = !stdenv.isDarwin;
doCheck = false; # custom test modifies sys.path
meta = with stdenv.lib; {
description = "A flexible test runner with layer support";