Skip to content

Commit

Permalink
Merge pull request #2390 from mlavacca/fix-makefile-experimental
Browse files Browse the repository at this point in the history
remove experimental tag from Makefile
  • Loading branch information
k8s-ci-robot authored Sep 13, 2023
2 parents 8ab4e18 + 4a8f5de commit b858494
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b858494

Please sign in to comment.