diff options
| -rw-r--r-- | pyramid/tests/test_events.py | 1 | ||||
| -rw-r--r-- | pyramid/tests/test_testing.py | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/pyramid/tests/test_events.py b/pyramid/tests/test_events.py index 4f9011cc0..793ac329f 100644 --- a/pyramid/tests/test_events.py +++ b/pyramid/tests/test_events.py @@ -235,6 +235,7 @@ class TestBeforeRender(unittest.TestCase): from pyramid.events import BeforeRender return BeforeRender(system, val) + @testing.skip_on('pypy') # see https://github.com/Pylons/pyramid/issues/3237 def test_instance_conforms(self): from zope.interface.verify import verifyObject from pyramid.interfaces import IBeforeRender diff --git a/pyramid/tests/test_testing.py b/pyramid/tests/test_testing.py index 0b4619de4..86c219988 100644 --- a/pyramid/tests/test_testing.py +++ b/pyramid/tests/test_testing.py @@ -1,5 +1,6 @@ import unittest from zope.component import getSiteManager +from pyramid import testing class TestDummyRootFactory(unittest.TestCase): def _makeOne(self, environ): @@ -526,6 +527,7 @@ class TestDummySession(unittest.TestCase): from pyramid.testing import DummySession return DummySession() + @testing.skip_on('pypy') # see https://github.com/Pylons/pyramid/issues/3237 def test_instance_conforms(self): from zope.interface.verify import verifyObject from pyramid.interfaces import ISession |
