Skip to content

Commit 85c9d2d

Browse files
committed
fix: exclude benchmark subpackage from make test-e2e
The benchmark package doesn't define the --binary flag that test-e2e passes. It has its own CI workflow so it doesn't need to run here.
1 parent ae525ca commit 85c9d2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/test.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ test-integration:
2424
## test-e2e: Running e2e tests
2525
test-e2e: build build-da build-evm docker-build-if-local
2626
@echo "--> Running e2e tests"
27-
@cd test/e2e && go test -mod=readonly -failfast -timeout=15m -tags='e2e evm' ./... --binary=../../build/testapp --evm-binary=../../build/evm
27+
@cd test/e2e && go test -mod=readonly -failfast -timeout=15m -tags='e2e evm' $$(go list -tags='e2e evm' ./... | grep -v /benchmark) --binary=../../build/testapp --evm-binary=../../build/evm
2828
.PHONY: test-e2e
2929

3030
## test-integration-cover: generate code coverage report for integration tests.

0 commit comments

Comments
 (0)