File tree Expand file tree Collapse file tree 2 files changed +20
-20
lines changed
Expand file tree Collapse file tree 2 files changed +20
-20
lines changed Original file line number Diff line number Diff line change @@ -113,10 +113,10 @@ jobs:
113113 - codeclimate.java.json
114114
115115 # 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
120120
121121 # Run fossa
122122 - run :
@@ -186,12 +186,12 @@ jobs:
186186 - codeclimate.python.json
187187
188188 # 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
195195
196196 # upload test coverage to codacy
197197 # - run:
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ buildscript {
99
1010plugins {
1111 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'
1414}
1515
1616repositories {
@@ -148,17 +148,17 @@ afterEvaluate {
148148
149149 check. dependsOn jacocoJupTestReport
150150
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+ // }
156156}
157157
158158// 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+ // }
162162
163163// https://github.com/codeclimate/test-reporter/issues/243
164164// task jacocoFixForCodeClimate(type: Copy) {
You can’t perform that action at this time.
0 commit comments