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

This commit is contained in:
Ron DuPlain 2012-04-23 21:36:28 -04:00
parent 148c50abf9
commit 2262ce4915

View file

@ -72,9 +72,12 @@ class MemoryTestCase(FlaskTestCase):
# Trigger caches
fire()
with self.assert_no_leak():
for x in xrange(10):
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()
def suite():