]> git.ipfire.org Git - thirdparty/patchwork.git/commitdiff
tox: Don't create '.pyc' files
authorStephen Finucane <stephenfinucane@hotmail.com>
Sat, 3 Sep 2016 19:18:02 +0000 (20:18 +0100)
committerStephen Finucane <stephenfinucane@hotmail.com>
Wed, 7 Sep 2016 19:57:58 +0000 (20:57 +0100)
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 <stephenfinucane@hotmail.com>
tox.ini

diff --git a/tox.ini b/tox.ini
index aa214a05656c25708deb8056e83744a94d484b2b..a4612efa14e3ed3f4f5d66c5d81d83c896cbc83a 100644 (file)
--- 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