mirror of
https://github.com/mattermost/mattermost.git
synced 2026-05-28 04:35:04 -04:00
chore(ci): remove || true from go test in go-cache; let failures surface
This commit is contained in:
parent
89200a2b95
commit
ec0d02d02f
1 changed files with 2 additions and 2 deletions
|
|
@ -445,8 +445,8 @@ go-cache: setup-go-work install-ci-tools ## Pre-warm Go module and build cache f
|
|||
@(cd public && $(GO) mod download all)
|
||||
$(GO) build ./...
|
||||
@(cd public && $(GO) build ./...)
|
||||
$(GO) test -run=^$$ -count=1 ./... || true
|
||||
@(cd public && $(GO) test -run=^$$ -count=1 ./... || true)
|
||||
$(GO) test -run=^$$ -count=1 ./...
|
||||
@(cd public && $(GO) test -run=^$$ -count=1 ./...)
|
||||
|
||||
test-compile: setup-go-work gotestsum ## Compile tests.
|
||||
@echo COMPILE TESTS
|
||||
|
|
|
|||
Loading…
Reference in a new issue