From 6b95a71d14c42014b6234404e42840b48a798f8e Mon Sep 17 00:00:00 2001 From: Asdine El Hrychy Date: Wed, 12 Aug 2020 23:17:42 +0200 Subject: [PATCH] Remove -v option on tests --- .travis.yml | 8 ++++---- Makefile | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 147f3e638..7bcff5b25 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,8 +4,8 @@ env: - GO111MODULE=on go: - - '1.13.x' - - '1.14.x' + - "1.13.x" + - "1.14.x" - tip matrix: @@ -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 ./... diff --git a/Makefile b/Makefile index e80741e55..08bfe9bbc 100644 --- a/Makefile +++ b/Makefile @@ -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=. ./...