Skip to content

Commit

Permalink
Merge pull request #89 from chriskilding/capture-failsafe-reports
Browse files Browse the repository at this point in the history
`buildPlugin()` - Archive Maven Failsafe Plugin reports
  • Loading branch information
oleg-nenashev authored Aug 13, 2019
2 parents 6fdfa86 + 1304af1 commit 8fbea4f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*.sw*
build/

.idea
target
2 changes: 1 addition & 1 deletion vars/buildPlugin.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def call(Map params = [:]) {
if (!skipTests) {
String testReports
if (isMaven) {
testReports = '**/target/surefire-reports/**/*.xml'
testReports = '**/target/surefire-reports/**/*.xml,**/target/failsafe-reports/**/*.xml'
} else {
testReports = '**/build/test-results/**/*.xml'
}
Expand Down

0 comments on commit 8fbea4f

Please sign in to comment.