From 32e334fb5f3e48b68913c8de7a67a6e2c1164694 Mon Sep 17 00:00:00 2001 From: Predrag Knezevic Date: Wed, 14 Jan 2026 10:27:52 +0100 Subject: [PATCH] UPSTREAM: : Run upstream e2e tests tagged with `@catalogd-update` Merge of https://github.com/openshift/operator-framework-operator-controller/commit/9fbe333f6f4ededc6421d11092ff6d5602404526 enabled proper exposure of docker-registry to upstream e2e tests. Thus, we are now able to run downstream the tests tagged with `@catalogd-update` --- openshift/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openshift/Makefile b/openshift/Makefile index 060ab10c4..ae8d63a42 100644 --- a/openshift/Makefile +++ b/openshift/Makefile @@ -46,7 +46,7 @@ test-e2e: ## Run the e2e tests. $(DIR)/operator-controller/build-test-registry.sh $(E2E_REGISTRY_NAMESPACE) $(E2E_REGISTRY_NAME) $(E2E_REGISTRY_IMAGE) cd $(DIR)/../; \ LOCAL_REGISTRY_HOST=$$(oc get route $(E2E_REGISTRY_NAME) -n $(E2E_REGISTRY_NAMESPACE) -o jsonpath='{.spec.host}') \ - go test $(DOWNSTREAM_E2E_FLAGS) ./test/e2e/features_test.go --godog.tags="~@mirrored-registry && ~@catalog-updates" --k8s.cli=oc + go test $(DOWNSTREAM_E2E_FLAGS) ./test/e2e/features_test.go --godog.tags="~@mirrored-registry" --k8s.cli=oc export DOWNSTREAM_EXPERIMENTAL_E2E_FLAGS := -count=1 -v .PHONY: test-experimental-e2e