From 07d9132f054114bf0c4c9af010374c6d56eb54b6 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sun, 11 Oct 2015 17:41:25 +0200 Subject: [PATCH] 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... --- .travis/run.sh | 4 ++-- 1 file 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