summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/slack-go/slack/Makefile
diff options
context:
space:
mode:
authorWim <wim@42.be>2020-03-28 23:50:47 +0100
committerGitHub <noreply@github.com>2020-03-28 23:50:47 +0100
commit092ca1cd678c44fa078bba11d4d219e61498342a (patch)
tree33be668a72610bfa9825817eb84017fdad8b362a /vendor/github.com/slack-go/slack/Makefile
parent0df253964123537b91e5a7364c83cc52f0e88df4 (diff)
downloadmatterbridge-msglm-092ca1cd678c44fa078bba11d4d219e61498342a.tar.gz
matterbridge-msglm-092ca1cd678c44fa078bba11d4d219e61498342a.tar.bz2
matterbridge-msglm-092ca1cd678c44fa078bba11d4d219e61498342a.zip
Update vendor slack-go/slack (#1068)
Diffstat (limited to 'vendor/github.com/slack-go/slack/Makefile')
-rw-r--r--vendor/github.com/slack-go/slack/Makefile6
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