From bf1b0db721df8f9a389f55cebd26dfd7ecc85c9e Mon Sep 17 00:00:00 2001 From: Brady-Malott <55215446+Brady-Malott@users.noreply.github.com> Date: Sun, 26 Feb 2023 18:06:50 -0500 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 600ef80..ac2940d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -7,6 +7,12 @@ pipeline { sh 'docker build -t microblog:latest .' } } + stage('Selenium Tests') { + steps { + echo 'Running Selenium Tests...' + //sh 'python3 selenium.py' + } + } stage('Deploy') { steps { // Stop running microblog container @@ -17,12 +23,6 @@ pipeline { sh 'docker image prune --filter "label!=org.opencontainers.image.vendor=Jenkins project"' } } - stage('Selenium Tests') { - steps { - echo 'Running Selenium Tests...' - //sh 'python3 selenium.py' - } - } } // Post always runs even if the pipeline fails