Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 29710f7

Browse files
committed
Remove -v flag from go test on Travis CI
Add coverage report to gitignore.
1 parent a510a94 commit 29710f7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
coverage.txt

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ matrix:
1919
- psql -c 'create database filedrop_test;' -U postgres
2020

2121
script:
22-
- go test -v -race -coverprofile=coverage.txt -covermode=atomic -tags $TEST_DB
22+
- go test -race -coverprofile=coverage.txt -covermode=atomic -tags $TEST_DB
2323

2424
after_success:
2525
- bash <(curl -s https://codecov.io/bash)

0 commit comments

Comments
 (0)