Skip to content

Commit

Permalink
Merged in feature/SHIBUI-1333-QA (pull request #349)
Browse files Browse the repository at this point in the history
Feature/SHIBUI-1333 QA

Approved-by: Ryan Mathis <rmathis@unicon.net>
  • Loading branch information
Bill Smith authored and rmathis committed Aug 1, 2019
2 parents 8620d6e + 8a6b057 commit b8207c7
Show file tree
Hide file tree
Showing 4 changed files with 1,973 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pipeline {
stage('Run Selenium tests') {
when {
expression {
return GIT_BRANCH.startsWith('PR')
return (GIT_BRANCH.startsWith('PR') || GIT_BRANCH.endsWith('-QA'))
}
}
steps {
Expand Down
2 changes: 1 addition & 1 deletion backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ COPY loader.properties loader.properties

EXPOSE 8080

ENTRYPOINT ["/usr/bin/java", "-jar", "app.jar"]
ENTRYPOINT ["/usr/bin/java", "-jar", "app.jar"]
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ class SeleniumSIDETest extends Specification {
'SHIBUI-950: Metadata Source from XML w/ digest' | '/SHIBUI-950.side'
'SHIBUI-1352: Create LocalDynamic provider' | '/SHIBUI-1352-1.side'
'SHIBUI-1352: Create FileSystem provider' | '/SHIBUI-1352-2.side'
'SHIBUI-1333: Verify metadata source configuration' | '/SHIBUI-1333.side'
}
}

Loading

0 comments on commit b8207c7

Please sign in to comment.