Skip to content

Commit ee530c0

Browse files
authored
Merge pull request #26721 from holiman/nocover
ci: disable coverage reporting in appveyor and travis
2 parents b3ae073 + a0d63bc commit ee530c0

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ jobs:
141141
env:
142142
- GO111MODULE=on
143143
script:
144-
- go run build/ci.go test -coverage $TEST_PACKAGES
144+
- go run build/ci.go test $TEST_PACKAGES
145145

146146
- stage: build
147147
if: type = pull_request
@@ -152,7 +152,7 @@ jobs:
152152
env:
153153
- GO111MODULE=on
154154
script:
155-
- go run build/ci.go test -coverage $TEST_PACKAGES
155+
- go run build/ci.go test $TEST_PACKAGES
156156

157157
- stage: build
158158
os: linux
@@ -161,7 +161,7 @@ jobs:
161161
env:
162162
- GO111MODULE=on
163163
script:
164-
- go run build/ci.go test -coverage $TEST_PACKAGES
164+
- go run build/ci.go test $TEST_PACKAGES
165165

166166
# This builder does the Azure archive purges to avoid accumulating junk
167167
- stage: build
@@ -186,5 +186,5 @@ jobs:
186186
env:
187187
- GO111MODULE=on
188188
script:
189-
- go run build/ci.go test -race -coverage $TEST_PACKAGES
189+
- go run build/ci.go test -race $TEST_PACKAGES
190190

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ for:
2626
- go run build/ci.go lint
2727
- go run build/ci.go install -dlgo
2828
test_script:
29-
- go run build/ci.go test -dlgo -coverage
29+
- go run build/ci.go test -dlgo
3030

3131
# linux/386 is disabled.
3232
- matrix:
@@ -54,4 +54,4 @@ for:
5454
- go run build/ci.go archive -arch %GETH_ARCH% -type zip -signer WINDOWS_SIGNING_KEY -upload gethstore/builds
5555
- go run build/ci.go nsis -arch %GETH_ARCH% -signer WINDOWS_SIGNING_KEY -upload gethstore/builds
5656
test_script:
57-
- go run build/ci.go test -dlgo -arch %GETH_ARCH% -cc %GETH_CC% -coverage
57+
- go run build/ci.go test -dlgo -arch %GETH_ARCH% -cc %GETH_CC%

0 commit comments

Comments
 (0)