diff --git a/Makefile b/Makefile index 9955ecb1d0..e8696c0a4b 100644 --- a/Makefile +++ b/Makefile @@ -87,12 +87,12 @@ test: # Run conformance tests against controller implementation .PHONY: conformance conformance: - go test ${GO_TEST_FLAGS} -v ./conformance -args ${CONFORMANCE_FLAGS} + go test ${GO_TEST_FLAGS} -v ./conformance -run TestConformance -args ${CONFORMANCE_FLAGS} # Run experimental conformance tests against controller implementation .PHONY: conformance.experimental conformance.experimental: - go test ${GO_TEST_FLAGS} --tags experimental -v ./conformance -run TestExperimentalConformance -args ${CONFORMANCE_FLAGS} + go test ${GO_TEST_FLAGS} -v ./conformance -run TestExperimentalConformance -args ${CONFORMANCE_FLAGS} # Install CRD's and example resources to a pre-existing cluster. .PHONY: install