4
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-07-04 06:37:45 +00:00

Update vendor slack-go/slack (#1068)

This commit is contained in:
Wim
2020-03-28 23:50:47 +01:00
committed by GitHub
parent 0df2539641
commit 092ca1cd67
23 changed files with 1001 additions and 189 deletions

View File

@ -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