Skip to content

Commit

Permalink
ignore these tests on pypy, see #3237 (#3320)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcdonc authored and mmerickel committed Aug 2, 2018
1 parent 57a896f commit 54533fa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
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

0 comments on commit 54533fa

Please sign in to comment.