From 54533fa2e3f1008df94172b3647a759078224930 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Wed, 1 Aug 2018 23:23:35 -0400 Subject: ignore these tests on pypy, see https://github.com/Pylons/pyramid/issues/3237 (#3320) --- pyramid/tests/test_events.py | 1 + pyramid/tests/test_testing.py | 2 ++ 2 files changed, 3 insertions(+) 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 -- cgit v1.2.3