File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 4141 mkdir -p ~/junit/
4242 mkdir -p ~/reports/
4343 find . -type f -regex ".*/build/test-results/.*xml" -exec cp {} ~/junit/ \;
44- cp -R swagger -grails-contract-tests/build/reports/tests ~/reports
44+ cp -R springfox -grails-contract-tests/build/reports/tests ~/reports
4545 when : always
4646 - store_test_results :
4747 path : ~/junit
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ allprojects {
2222 guava = " 20.0"
2323 grails = " 3.2.4"
2424 htmlUnit = " 2.29"
25+ jacocoVersion = ' 0.8.1'
2526 jackson = ' 2.7.7'
2627 joda = " 2.9.4"
2728 jsonPath = " 2.4.0"
Original file line number Diff line number Diff line change @@ -98,11 +98,19 @@ jar {
9898 }
9999}
100100
101+ jacoco {
102+ toolVersion = " $jacocoVersion "
103+ }
104+
101105jacocoTestReport {
102106 reports {
103107 xml. enabled true
104- html. enabled false
108+ html. enabled true
105109 }
106110}
107111
112+ test {
113+ jvmArgs " -Dorg.spockframework.mock.ignoreByteBuddy=true"
114+ }
115+
108116
You can’t perform that action at this time.
0 commit comments