From 4a8f5de1618eacf32412d4a2735ccb117e62417e Mon Sep 17 00:00:00 2001 From: Mattia Lavacca Date: Wed, 13 Sep 2023 09:56:27 +0200 Subject: [PATCH] chore: removed experimental tag from Makefile Signed-off-by: Mattia Lavacca --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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