Always run memory tests

This commit is contained in:
Markus Unterwaditzer 2015-03-22 12:49:16 +01:00
parent 9c1cf1bc08
commit 1aa8a54b17
2 changed files with 0 additions and 7 deletions

View file

@ -8,9 +8,6 @@ test:
tox-test:
tox
test-with-mem:
RUN_FLASK_MEMORY_TESTS=1 python run-tests.py
audit:
python setup.py audit

View file

@ -48,10 +48,6 @@ class assert_no_leak(object):
gc.enable()
# XXX: untitaker: These tests need to be revised. They broke around the time we
# ported Flask to Python 3.
@pytest.mark.skipif(os.environ.get('RUN_FLASK_MEMORY_TESTS') != '1',
reason='Turned off due to envvar.')
def test_memory_consumption():
app = flask.Flask(__name__)