diff --git a/Jenkinsfile b/Jenkinsfile index 6ac0de5bd..67f4e2b2b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,12 +5,12 @@ pipeline { stages { stage('Build') { agent { - docker { +# docker { //This image parameter (of the agent section’s docker parameter) downloads the python:2-alpine //Docker image and runs this image as a separate container. The Python container becomes //the agent that Jenkins uses to run the Build stage of your Pipeline project. - image 'python:2-alpine' - } +# image 'python:2-alpine' +# } } steps { //This sh step runs the Python command to compile your application and @@ -23,12 +23,12 @@ pipeline { } stage('Test') { agent { - docker { + # docker { //This image parameter downloads the qnib:pytest Docker image and runs this image as a //separate container. The pytest container becomes the agent that Jenkins uses to run the Test //stage of your Pipeline project. - image 'qnib/pytest' - } + # image 'qnib/pytest' + # } } steps { //This sh step executes pytest’s py.test command on sources/test_calc.py, which runs a set of