Revert PR 2082

Signed-off-by: RainbowMango <qdurenhongcai@gmail.com>
This commit is contained in:
RainbowMango 2022-07-02 17:27:13 +08:00
parent 67996bb5c8
commit 2f38edcdfd
1 changed files with 3 additions and 3 deletions

View File

@ -110,9 +110,9 @@ release-chart:
.PHONY: test .PHONY: test
test: test:
for s in $(go list ./pkg/...); do if ! go test -race -failfast -v -p 1 $s; then break; fi; done go test --race --v ./pkg/...
for s in $(go list ./cmd/...); do if ! go test -race -failfast -v -p 1 $s; then break; fi; done go test --race --v ./cmd/...
for s in $(go list ./examples/...); do if ! go test -race -failfast -v -p 1 $s; then break; fi; done go test --race --v ./examples/...
upload-images: images upload-images: images
@echo "push images to $(REGISTRY)" @echo "push images to $(REGISTRY)"