Skip to content
Snippets Groups Projects
Commit f7df8ff4 authored by Stuart Young's avatar Stuart Young
Browse files

consume env var to select tox env

parent eb35a410
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