Merge pull request #4073 from mikedougherty/jenkinsfile

Update Jenkinsfile to run "janky" tasks
This commit is contained in:
Joffrey F 2016-11-02 14:55:11 -07:00 committed by GitHub
commit 3b46a62f36
2 changed files with 80 additions and 7 deletions

View file

@ -24,6 +24,7 @@ fi
BUILD_NUMBER=${BUILD_NUMBER-$USER}
PY_TEST_VERSIONS=${PY_TEST_VERSIONS:-py27,py34}
for version in $DOCKER_VERSIONS; do
>&2 echo "Running tests against Docker $version"
@ -58,6 +59,6 @@ for version in $DOCKER_VERSIONS; do
--env="DOCKER_VERSION=$version" \
--entrypoint="tox" \
"$TAG" \
-e py27,py34 -- "$@"
-e "$PY_TEST_VERSIONS" -- "$@"
done