Skip to content

Commit

Permalink
Remove -v option on tests
Browse files Browse the repository at this point in the history
  • Loading branch information
asdine committed Aug 12, 2020
1 parent 2ce5c9b commit 6b95a71
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ env:
- GO111MODULE=on

go:
- '1.13.x'
- '1.14.x'
- "1.13.x"
- "1.14.x"
- tip

matrix:
Expand All @@ -16,5 +16,5 @@ script:
- go mod vendor
- make
- make gen
- go test -v -mod vendor -race -cover -timeout=2m ./...
- go test -v -mod vendor -race -cover -timeout=2m -tags=tinygo ./...
- go test -mod vendor -race -cover -timeout=2m ./...
- go test -mod vendor -race -cover -timeout=2m -tags=tinygo ./...
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ gen: $(NAME)
go generate ./...

test:
go test -v -cover -timeout=1m ./...
go test -cover -timeout=1m ./...

testtinygo:
go test -tags=tinygo -v -cover -timeout=1m ./...
go test -tags=tinygo -cover -timeout=1m ./...

bench:
go test -v -run=^\$$ -benchmem -bench=. ./...
Expand Down

0 comments on commit 6b95a71

Please sign in to comment.