Skip to content

Commit

Permalink
chore: fix make test (apecloud#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
weicao authored Sep 8, 2024
1 parent 37506ab commit 3a5d762
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ run: build
./$(BINARY_NAME)

# Test target
.PHONY: test
.PHONY: test-full
test:
go test -cover ./...

.PHONY: test
test:
go test -cover $(shell go list ./... | grep -v './binlogreplication' | grep -v './transpiler')
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ require (
github.com/marcboeker/go-duckdb v1.7.1
github.com/prometheus/client_golang v1.19.0
github.com/rs/zerolog v1.33.0
github.com/shopspring/decimal v1.3.1
github.com/sirupsen/logrus v1.8.1
github.com/stretchr/testify v1.9.0
gopkg.in/src-d/go-errors.v1 v1.0.0
Expand Down Expand Up @@ -62,7 +63,6 @@ require (
github.com/prometheus/procfs v0.13.0 // indirect
github.com/rogpeppe/go-internal v1.11.0 // indirect
github.com/rs/xid v1.5.0 // indirect
github.com/shopspring/decimal v1.3.1 // indirect
github.com/tetratelabs/wazero v1.1.0 // indirect
github.com/twpayne/go-geom v1.3.6 // indirect
github.com/twpayne/go-kml v1.5.2-0.20200728095708-9f2fd4dfcbfe // indirect
Expand Down

0 comments on commit 3a5d762

Please sign in to comment.