Show code coverage when testing.

This commit is contained in:
Stanislav Nikitin 2020-11-21 21:40:14 +05:00
parent 7342d1d22f
commit 724bbe0793
No known key found for this signature in database
GPG Key ID: 106900B32F8192EE
1 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@ test-1.15:
- docker
image: golang:1.15
script:
- go test -test.v ./...
- go test -test.v -cover ./...
test-1.14:
stage: test
@ -24,7 +24,7 @@ test-1.14:
- docker
image: golang:1.14
script:
- go test -test.v ./...
- go test -test.v -cover ./...
test-1.13:
stage: test
@ -32,4 +32,4 @@ test-1.13:
- docker
image: golang:1.13
script:
- go test -test.v ./...
- go test -test.v -cover ./...