Skip to content

Commit

Permalink
SHIBUI-1505
Browse files Browse the repository at this point in the history
Commented out the integratioTest / Selenium section.
  • Loading branch information
Bill Smith committed Sep 19, 2019
1 parent 993f1d7 commit 643da2c
Showing 1 changed file with 18 additions and 17 deletions.
35 changes: 18 additions & 17 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,23 +17,24 @@ pipeline {
}
}

stage('Run Selenium tests') {
when {
expression {
return (GIT_BRANCH.startsWith('PR') || GIT_BRANCH.endsWith('-QA'))
}
}
steps {
sh '''
./gradlew integrationTest -Dselenium.host=jenkins
'''
}
post {
always {
junit 'backend/build/test-results/integrationTest/**/*.xml'
}
}
}
# Commented out, for the time being, per SHIBUI-1505
# stage('Run Selenium tests') {
# when {
# expression {
# return (GIT_BRANCH.startsWith('PR') || GIT_BRANCH.endsWith('-QA'))
# }
# }
# steps {
# sh '''
# ./gradlew integrationTest -Dselenium.host=jenkins
# '''
# }
# post {
# always {
# junit 'backend/build/test-results/integrationTest/**/*.xml'
# }
# }
# }

stage('Build Docker images') {
when {
Expand Down

0 comments on commit 643da2c

Please sign in to comment.