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