From a56fd6627056c2c8d501e07acee7d93c18a50162 Mon Sep 17 00:00:00 2001 From: Jeremy Bowman Date: Tue, 30 Jan 2018 18:43:43 -0500 Subject: [PATCH] Always use a fresh tox env in Jenkins --- scripts/accessibility-tests.sh | 6 +++--- scripts/generic-ci-tests.sh | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/scripts/accessibility-tests.sh b/scripts/accessibility-tests.sh index 6b5202aa82..a35abaa983 100755 --- a/scripts/accessibility-tests.sh +++ b/scripts/accessibility-tests.sh @@ -15,11 +15,11 @@ set -e ############################################################################### if [[ $DJANGO_VERSION == '1.11' ]]; then - TOX="tox -e py27-django111 --" + TOX="tox -r -e py27-django111 --" elif [[ $DJANGO_VERSION == '1.10' ]]; then - TOX="tox -e py27-django110 --" + TOX="tox -r -e py27-django110 --" elif [[ $DJANGO_VERSION == '1.9' ]]; then - TOX="tox -e py27-django19 --" + TOX="tox -r -e py27-django19 --" else TOX="" fi diff --git a/scripts/generic-ci-tests.sh b/scripts/generic-ci-tests.sh index bd08c59169..0594019ee4 100755 --- a/scripts/generic-ci-tests.sh +++ b/scripts/generic-ci-tests.sh @@ -70,11 +70,11 @@ END } if [[ $DJANGO_VERSION == '1.11' ]]; then - TOX="tox -e py27-django111 --" + TOX="tox -r -e py27-django111 --" elif [[ $DJANGO_VERSION == '1.10' ]]; then - TOX="tox -e py27-django110 --" + TOX="tox -r -e py27-django110 --" elif [[ $DJANGO_VERSION == '1.9' ]]; then - TOX="tox -e py27-django19 --" + TOX="tox -r -e py27-django19 --" else TOX="" fi