diff options
| author | José Padilla | 2014-10-28 16:58:25 -0400 |
|---|---|---|
| committer | José Padilla | 2014-10-28 16:58:25 -0400 |
| commit | 8af3d5db492c7468a1f2e4befdcd78b59216241d (patch) | |
| tree | 5c099f228d5aed29431a8128d3c6b6787dc0d515 /tox.ini | |
| parent | 4ad4fca6cec66b8f088921404e6896ee0b324a03 (diff) | |
| download | django-rest-framework-8af3d5db492c7468a1f2e4befdcd78b59216241d.tar.bz2 | |
Use PYTHONDONTWRITEBYTECODE=1 on tox environment
This fixes bad marshal data errors after running
tests with tox and later running tests manually
via runtests.py. Fixes #1957
Diffstat (limited to 'tox.ini')
| -rw-r--r-- | tox.ini | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -9,6 +9,8 @@ envlist = [testenv] commands = ./runtests.py --fast +setenv = + PYTHONDONTWRITEBYTECODE=1 [testenv:flake8] basepython = python2.7 |
