diff options
Diffstat (limited to 'vendor/github.com/slack-go/slack/Makefile')
-rw-r--r-- | vendor/github.com/slack-go/slack/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vendor/github.com/slack-go/slack/Makefile b/vendor/github.com/slack-go/slack/Makefile index 1c64747d..72796401 100644 --- a/vendor/github.com/slack-go/slack/Makefile +++ b/vendor/github.com/slack-go/slack/Makefile @@ -25,12 +25,12 @@ lint: @go vet . test: - @go test -count=1 -timeout 300s -short . + @go test -v -count=1 -timeout 300s -short ./... test-race: - @go test -count=1 -timeout 300s -short -race . + @go test -v -count=1 -timeout 300s -short -race ./... test-integration: - @go test -count=1 -timeout 600s . + @go test -v -count=1 -timeout 600s ./... pr-prep: fmt lint test-race test-integration |