From 2fe9983b5df928aff5bd55722fff49424de4b361 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Sat, 3 Sep 2016 20:18:02 +0100 Subject: [PATCH] tox: Don't create '.pyc' files In '8e58c29', code was added to delete '.pyc' files. However, this was later reverted in '9fd161' due to the increase in run time that this incurred. However, the need to avoid stale '.pyc' files still exists. To resolve this, add the 'PYTHONDONTWRITEBYTECODE' environment option to disable generation of these files. This includes a slight performance increase. Signed-off-by: Stephen Finucane --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index aa214a05..a4612efa 100644 --- a/tox.ini +++ b/tox.ini @@ -12,6 +12,7 @@ deps = django19: django>=1.9,<1.10 setenv = DJANGO_SETTINGS_MODULE = patchwork.settings.dev + PYTHONDONTWRITEBYTECODE = 1 passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY PW_TEST_DB_TYPE PW_TEST_DB_USER PW_TEST_DB_PASS PW_TEST_DB_HOST -- 2.47.3