try to avoid conflicts with *.pyc files from outside of the docker tests

This commit is contained in:
Noah Levitt 2015-10-28 23:35:23 +00:00
parent 818bdda687
commit 4930cc2d24

View File

@ -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