You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-python/pyprotocols/files/SkipTests.patch

26 lines
619 B

--- a/src/protocols/tests/__init__.py
+++ b/src/protocols/tests/__init__.py
@@ -256,22 +256,6 @@
makeSuite(GenerationTests,'check'),
]
- try:
- import zope.interface
- except ImportError:
- pass
- else:
- from protocols.tests import test_zope
- tests.append( test_zope.test_suite() )
-
- try:
- from twisted.python.components import Interface
- except (ImportError, SystemError):
- pass
- else:
- from protocols.tests import test_twisted
- tests.append( test_twisted.test_suite() )
-
return TestSuite(
tests
)