Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix test failures on pypy #3320

Merged
merged 11 commits into from
Aug 2, 2018
1 change: 1 addition & 0 deletions pyramid/tests/test_events.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,7 @@ def _makeOne(self, system, val=None):
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
Expand Down
2 changes: 2 additions & 0 deletions pyramid/tests/test_testing.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import unittest
from zope.component import getSiteManager
from pyramid import testing

class TestDummyRootFactory(unittest.TestCase):
def _makeOne(self, environ):
Expand Down Expand Up @@ -526,6 +527,7 @@ def _makeOne(self):
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
Expand Down