File tree 2 files changed +20
-20
lines changed
2 files changed +20
-20
lines changed Original file line number Diff line number Diff line change @@ -113,10 +113,10 @@ jobs:
113
113
- codeclimate.java.json
114
114
115
115
# run test coverage to coveralls
116
- - run :
117
- name : Upload to coveralls
118
- command : |
119
- bash ./gradlew test jacocoJupTestReport coverallsJacoco
116
+ # - run:
117
+ # name: Upload to coveralls
118
+ # command: |
119
+ # bash ./gradlew test jacocoJupTestReport coverallsJacoco
120
120
121
121
# Run fossa
122
122
- run :
@@ -186,12 +186,12 @@ jobs:
186
186
- codeclimate.python.json
187
187
188
188
# run test coverage to coveralls
189
- - run :
190
- name : Upload to coveralls
191
- command : |
192
- python3 -m venv venv
193
- . venv/bin/activate
194
- coveralls
189
+ # - run:
190
+ # name: Upload to coveralls
191
+ # command: |
192
+ # python3 -m venv venv
193
+ # . venv/bin/activate
194
+ # coveralls
195
195
196
196
# upload test coverage to codacy
197
197
# - run:
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ buildscript {
9
9
10
10
plugins {
11
11
id " org.sonarqube" version " 3.5.0.2730"
12
- id " com.github.nbaztec.coveralls-jacoco" version " 1.2.15"
13
- id ' com.github.kt3k.coveralls' version ' 2.12.0'
12
+ // id "com.github.nbaztec.coveralls-jacoco" version "1.2.15"
13
+ // id 'com.github.kt3k.coveralls' version '2.12.0'
14
14
}
15
15
16
16
repositories {
@@ -148,17 +148,17 @@ afterEvaluate {
148
148
149
149
check. dependsOn jacocoJupTestReport
150
150
151
- coverallsJacoco {
152
- def jacocoJupTestReportTask = project. tasks. getByName(' jacocoJupTestReport' )
153
- reportPath = " ${ buildDir} /reports/jacoco/report.xml"
154
- reportSourceSets = files(jacocoJupTestReportTask. sourceDirectories. collect{ it. listFiles() }. flatten())
155
- }
151
+ // coverallsJacoco {
152
+ // def jacocoJupTestReportTask = project.tasks.getByName('jacocoJupTestReport')
153
+ // reportPath = "${buildDir}/reports/jacoco/report.xml"
154
+ // reportSourceSets = files(jacocoJupTestReportTask.sourceDirectories.collect{ it.listFiles() }.flatten())
155
+ // }
156
156
}
157
157
158
158
// https://github.com/ben-manes/caffeine/blob/master/build.gradle
159
- coveralls {
160
- jacocoReportPath = " ${ buildDir} /reports/jacoco/report.xml"
161
- }
159
+ // coveralls {
160
+ // jacocoReportPath = "${buildDir}/reports/jacoco/report.xml"
161
+ // }
162
162
163
163
// https://github.com/codeclimate/test-reporter/issues/243
164
164
// task jacocoFixForCodeClimate(type: Copy) {
You can’t perform that action at this time.
0 commit comments