From ed49204f6055e393d925828da05fa827544a668b Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Sun, 30 Jan 2011 18:08:34 -0500 Subject: skip chameleon-using tests on pypy and jython --- pyramid/tests/test_config.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyramid/tests/test_config.py b/pyramid/tests/test_config.py index f60273977..9ce698cfe 100644 --- a/pyramid/tests/test_config.py +++ b/pyramid/tests/test_config.py @@ -2274,6 +2274,7 @@ class ConfiguratorTests(unittest.TestCase): result = view(None, request) self.assertEqual(result, ('abc', request)) + @testing.skip_on('pypy', 'java') def test_set_notfound_view_with_renderer(self): from zope.interface import implementedBy from pyramid.interfaces import IRequest @@ -2320,6 +2321,7 @@ class ConfiguratorTests(unittest.TestCase): result = view(None, request) self.assertEqual(result, ('abc', request)) + @testing.skip_on('pypy', 'java') def test_set_forbidden_view_with_renderer(self): from zope.interface import implementedBy from pyramid.interfaces import IRequest -- cgit v1.2.3