diff --git a/tests/run-tests.sh b/tests/run-tests.sh index 89dc3b8..069986f 100755 --- a/tests/run-tests.sh +++ b/tests/run-tests.sh @@ -18,8 +18,8 @@ do && virtualenv -p $python /tmp/venv \ && source /tmp/venv/bin/activate \ && pip --log-file /tmp/pip.log install . pytest requests \ - && py.test -s tests \ - && py.test -s --rethinkdb-servers=localhost tests \ - && py.test -s --rethinkdb-servers=localhost --rethinkdb-big-table tests'" + && PYTHONDONTWRITEBYTECODE=1 py.test -s tests \ + && PYTHONDONTWRITEBYTECODE=1 py.test -s --rethinkdb-servers=localhost tests \ + && PYTHONDONTWRITEBYTECODE=1 py.test -s --rethinkdb-servers=localhost --rethinkdb-big-table tests'" done