Always use a fresh tox env in Jenkins

This commit is contained in:
Jeremy Bowman
2018-01-30 18:43:43 -05:00
parent 8b7701df9e
commit a56fd66270
2 changed files with 6 additions and 6 deletions

View File

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

View File

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