From: Stephen Finucane Date: Sat, 3 Sep 2016 19:18:02 +0000 (+0100) Subject: tox: Don't create '.pyc' files X-Git-Tag: v2.0.0-rc1~252 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2fe9983b5df928aff5bd55722fff49424de4b361;p=thirdparty%2Fpatchwork.git 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 --- 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