Skip to content

Commit

Permalink
Always use a fresh tox env in Jenkins
Browse files Browse the repository at this point in the history
  • Loading branch information
jmbowman committed Jan 30, 2018
1 parent 8b7701d commit a56fd66
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions scripts/accessibility-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions scripts/generic-ci-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a56fd66

Please sign in to comment.