Commit c3216acd by Stu Young Committed by GitHub

Merge pull request #16308 from edx/estute/add-django-version-to-paver-args

set django version in paver args
parents c498c1ce 7f94d311
......@@ -68,7 +68,12 @@ function emptyxunit {
END
}
PAVER_ARGS="-v"
if [[ $DJANGO_VERSION == '1.11' ]]; then
PAVER_ARGS="-v --django_version=1.11"
else
PAVER_ARGS="-v"
fi
PARALLEL="--processes=-1"
export SUBSET_JOB=$JOB_NAME
case "$TEST_SUITE" in
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment