summaryrefslogtreecommitdiff
path: root/Jenkinsfile
diff options
context:
space:
mode:
Diffstat (limited to 'Jenkinsfile')
-rw-r--r--Jenkinsfile13
1 files changed, 10 insertions, 3 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index e7c3321..471072b 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -85,6 +85,13 @@ def runTests = { Map settings ->
def testNetwork = "dpy-testnet-\$BUILD_NUMBER-\$EXECUTOR_NUMBER-${pythonVersion}-${dockerVersion}"
withDockerRegistry(credentialsId:'dockerbuildbot-index.docker.io') {
try {
+ // unit tests
+ sh """docker run --rm \\
+ -e 'DOCKER_TEST_API_VERSION=${apiVersion}' \\
+ ${testImage} \\
+ py.test -v -rxs --cov=docker tests/unit
+ """
+ // integration tests
sh """docker network create ${testNetwork}"""
sh """docker run --rm -d --name ${dindContainerName} -v /tmp --privileged --network ${testNetwork} \\
${imageDindSSH} dockerd -H tcp://0.0.0.0:2375
@@ -95,9 +102,9 @@ def runTests = { Map settings ->
-e 'DOCKER_TEST_API_VERSION=${apiVersion}' \\
--network ${testNetwork} \\
--volumes-from ${dindContainerName} \\
- -v ~/.docker/config.json:/root/.docker/config.json \\
+ -v $DOCKER_CONFIG/config.json:/root/.docker/config.json \\
${testImage} \\
- py.test -v -rxs --cov=docker --ignore=tests/ssh tests/
+ py.test -v -rxs --cov=docker tests/integration
"""
sh """docker stop ${dindContainerName}"""
// start DIND container with SSH
@@ -111,7 +118,7 @@ def runTests = { Map settings ->
-e 'DOCKER_TEST_API_VERSION=${apiVersion}' \\
--network ${testNetwork} \\
--volumes-from ${dindContainerName} \\
- -v ~/.docker/config.json:/root/.docker/config.json \\
+ -v $DOCKER_CONFIG/config.json:/root/.docker/config.json \\
${testImage} \\
py.test -v -rxs --cov=docker tests/ssh
"""