diff options
| author | Chris McDonough <chrism@plope.com> | 2011-01-30 18:08:34 -0500 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-01-30 18:08:34 -0500 |
| commit | ed49204f6055e393d925828da05fa827544a668b (patch) | |
| tree | 8811442eef6f4a72eab7e0c2e80c8f0d304c8219 | |
| parent | ef7eeefc8aeea42c394152f9dbc80d83bd7df6a0 (diff) | |
| download | pyramid-ed49204f6055e393d925828da05fa827544a668b.tar.gz pyramid-ed49204f6055e393d925828da05fa827544a668b.tar.bz2 pyramid-ed49204f6055e393d925828da05fa827544a668b.zip | |
skip chameleon-using tests on pypy and jython
| -rw-r--r-- | pyramid/tests/test_config.py | 2 |
1 files changed, 2 insertions, 0 deletions
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 |
