Browse Source

Skip template leak test when not CPython2.7, #452.

pull/502/head
Ron DuPlain 13 years ago
parent
commit
2262ce4915
  1. 3
      flask/testsuite/regression.py

3
flask/testsuite/regression.py

@ -72,6 +72,9 @@ class MemoryTestCase(FlaskTestCase):
# Trigger caches
fire()
# This test only works on CPython 2.7.
if sys.version_info >= (2, 7) and \
not hasattr(sys, 'pypy_translation_info'):
with self.assert_no_leak():
for x in xrange(10):
fire()

Loading…
Cancel
Save