diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-08-25 15:44:05 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-08-25 15:44:05 +0100 |
commit | d046adf4ecf0737dc111a93d1f1ae7f41bc1bccb (patch) | |
tree | 6974e0d13026d63a954f1bf01d21fa2cf5154ad3 /tox.ini | |
parent | Prod jenkins (diff) | |
download | synapse-d046adf4ecf0737dc111a93d1f1ae7f41bc1bccb.tar.xz |
Set PYTHONDONTWRITEBYTECODE in the tox environment so that we don't spew .pyc files everywhere
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini index a1e0ac70d3..58cf9613cb 100644 --- a/tox.ini +++ b/tox.ini @@ -6,6 +6,8 @@ deps = coverage Twisted>=15.1 mock +setenv = + PYTHONDONTWRITEBYTECODE = no_byte_code commands = coverage run --source=./synapse {envbindir}/trial tests coverage report -m |