summaryrefslogtreecommitdiffstats
path: root/.travis
diff options
context:
space:
mode:
authorThomas Waldmann <tw@waldmann-edv.de>2015-10-11 17:41:25 +0200
committerThomas Waldmann <tw@waldmann-edv.de>2015-10-11 17:41:25 +0200
commit07d9132f054114bf0c4c9af010374c6d56eb54b6 (patch)
tree6d42a58ff86af904025ad895051ccfee5240e32f /.travis
parent9dccc809a9e5bfe576b78e5f63cd98a09061a98a (diff)
travis: use tox -r so it rebuilds the tox envs
it seems to keep .tox envs even if one removes stuff from requirements file. if that stuff causes troubles, as here with pytest-benchmark, the troubles stay...
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/run.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis/run.sh b/.travis/run.sh
index cf504ac51..7c1e847c1 100755
--- a/.travis/run.sh
+++ b/.travis/run.sh
@@ -17,7 +17,7 @@ source ~/.venv/bin/activate
if [[ "$(uname -s)" == "Darwin" ]]; then
# no fakeroot on OS X
- sudo tox -e $TOXENV
+ sudo tox -e $TOXENV -r
else
- fakeroot -u tox
+ fakeroot -u tox -r
fi