Skip to content

Commit b47fd07

Browse files
committed
Adds TEST_FILTER env var to e2e run
Signed-off-by: Brett Tofel <[email protected]>
1 parent 493315f commit b47fd07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ test: manifests generate fmt lint test-unit test-e2e #HELP Run all tests.
165165

166166
.PHONY: e2e
167167
e2e: #EXHELP Run the e2e tests.
168-
go test -count=1 -v ./test/e2e/...
168+
go test -count=1 -v -run "$(if $(TEST_FILTER),$(TEST_FILTER),.)" ./test/e2e/...
169169

170170
E2E_REGISTRY_NAME := docker-registry
171171
E2E_REGISTRY_NAMESPACE := operator-controller-e2e

0 commit comments

Comments
 (0)