From 18a16c0c028f35388d9df3e907d797134e855fe0 Mon Sep 17 00:00:00 2001 From: Brady-Malott <55215446+Brady-Malott@users.noreply.github.com> Date: Sun, 26 Feb 2023 18:10:32 -0500 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index ac2940d..600ef80 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -7,12 +7,6 @@ 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 @@ -23,6 +17,12 @@ 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