1
0
Fork 0
mirror of https://github.com/diamondburned/arikawa.git synced 2024-08-20 15:24:37 +00:00

CI: Reduce test output verbosity

This commit is contained in:
diamondburned 2020-11-29 17:12:25 -08:00
parent c6679dc52c
commit 56d18a8972

View file

@ -31,7 +31,7 @@
"variables": [ "$BOT_TOKEN" ]
},
"script": [
"go test -coverprofile $COV -race -v ./...",
"go test -coverprofile $COV -race ./...",
"go tool cover -func $COV"
]
},
@ -47,7 +47,7 @@
"go get ./...",
# Test this package along with dismock.
"go get $dismock@$dismock_v",
"go test -coverpkg $tested -coverprofile $COV -tags integration -race -v ./... $dismock",
"go test -coverpkg $tested -coverprofile $COV -tags integration -race ./... $dismock",
"go mod tidy",
"go tool cover -func $COV"
]