Skip to content
Snippets Groups Projects
Unverified Commit 44945dc0 authored by Stu Young's avatar Stu Young Committed by GitHub
Browse files

Merge pull request #18377 from edx/estute/TE-2544

consume env var to select tox env
parents 58b9cb49 f7df8ff4
No related merge requests found
......@@ -69,15 +69,12 @@ END
}
if [[ $DJANGO_VERSION == '1.11' ]]; then
TOX="tox -r -e py27-django111 --"
elif [[ $DJANGO_VERSION == '1.10' ]]; then
TOX="tox -r -e py27-django110 --"
elif [[ $DJANGO_VERSION == '1.9' ]]; then
TOX="tox -r -e py27-django19 --"
if [ -n "${TOX_ENV}" ]; then
TOX="tox -r -e ${TOX_ENV} --"
else
TOX=""
fi
PAVER_ARGS="-v"
PARALLEL="--processes=-1"
export SUBSET_JOB=$JOB_NAME
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment