Update Jenkinsfile to perform existing jenkins tasks

Signed-off-by: Mike Dougherty <mike.dougherty@docker.com>
This commit is contained in:
Mike Dougherty 2016-04-22 12:56:07 -07:00
commit 4871523d5e
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