Skip to content

Commit

Permalink
SHIBUI-1505
Browse files Browse the repository at this point in the history
Updated comment format to hopefully be accurate this time.
  • Loading branch information
Bill Smith committed Sep 19, 2019
1 parent 643da2c commit 4f1748d
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,25 +17,25 @@ pipeline {
}
}

# 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'
# }
# }
# }

/* 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 {
expression {
Expand Down

0 comments on commit 4f1748d

Please sign in to comment.