From 72712755c46c787c99dd194c7ec634bd43600567 Mon Sep 17 00:00:00 2001 From: Ramiro Morales Date: Sun, 25 Aug 2013 19:09:03 -0300 Subject: [PATCH] Ignore coverage HTML report output dir in tests. Added it to the list of dirs ignored by tests/runtests.py. --- tests/runtests.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/runtests.py b/tests/runtests.py index 5053b4f54c..8e3d2361b8 100755 --- a/tests/runtests.py +++ b/tests/runtests.py @@ -35,6 +35,7 @@ TEMP_DIR = tempfile.mkdtemp(prefix='django_') os.environ['DJANGO_TEST_TEMP_DIR'] = TEMP_DIR SUBDIRS_TO_SKIP = [ + 'coverage_html', 'data', 'requirements', 'templates',