diff options
| author | Chris McDonough <chrism@plope.com> | 2018-08-01 23:23:35 -0400 |
|---|---|---|
| committer | Michael Merickel <michael@merickel.org> | 2018-08-01 22:23:35 -0500 |
| commit | 54533fa2e3f1008df94172b3647a759078224930 (patch) | |
| tree | 6b5500bbfee0caec2109adfb9e81d5a660eae51f | |
| parent | 57a896f103c7378fb285f6594228578a5324d672 (diff) | |
| download | pyramid-54533fa2e3f1008df94172b3647a759078224930.tar.gz pyramid-54533fa2e3f1008df94172b3647a759078224930.tar.bz2 pyramid-54533fa2e3f1008df94172b3647a759078224930.zip | |
ignore these tests on pypy, see https://github.com/Pylons/pyramid/issues/3237 (#3320)
| -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 |
