From b6fbc4c0258e6619287b9a553bae87df424e259f Mon Sep 17 00:00:00 2001 From: Steve Piercy Date: Mon, 11 Nov 2019 20:49:55 -0800 Subject: [PATCH] Skip failing pypy test - See https://github.com/Pylons/pyramid/issues/3237 --- pyramid/tests/test_testing.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyramid/tests/test_testing.py b/pyramid/tests/test_testing.py index fffd424d0f..2e0c601a84 100644 --- a/pyramid/tests/test_testing.py +++ b/pyramid/tests/test_testing.py @@ -533,6 +533,9 @@ 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