File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -30,10 +30,18 @@ export REG_PKG_NAME := registry-operator
3030export E2E_TEST_CATALOG_V1 := e2e/test-catalog:v1
3131export E2E_TEST_CATALOG_V2 := e2e/test-catalog:v2
3232export CATALOG_IMG := $(LOCAL_REGISTRY_HOST ) /$(E2E_TEST_CATALOG_V1 )
33+
3334# Order matters here, the ".../registries.conf" entry must be last.
3435export DOWNSTREAM_E2E_FLAGS := -count=1 -v -skip 'TestClusterExtensionInstallReResolvesWhenNewCatalog|TestClusterExtensionInstallRegistryDynamic|TestClusterExtensionInstallRegistry/package_requires_mirror_registry_configuration_in_/etc/containers/registries.conf'
3536.PHONY : test-e2e
3637test-e2e : # # Run the e2e tests.
3738 $(DIR ) /operator-controller/build-test-registry.sh $(E2E_REGISTRY_NAMESPACE ) $(E2E_REGISTRY_NAME ) $(E2E_REGISTRY_IMAGE )
3839 cd $(DIR ) /../; \
3940 go test $(DOWNSTREAM_E2E_FLAGS ) ./test/e2e/...;
41+
42+ export DOWNSTREAM_EXPERIMENTAL_E2E_FLAGS := -count=1 -v
43+ .PHONY : test-experimental-e2e
44+ test-experimental-e2e : # # Run the experimental e2e tests.
45+ $(DIR ) /operator-controller/build-test-registry.sh $(E2E_REGISTRY_NAMESPACE ) $(E2E_REGISTRY_NAME ) $(E2E_REGISTRY_IMAGE )
46+ cd $(DIR ) /../; \
47+ go test $(DOWNSTREAM_EXPERIMENTAL_E2E_FLAGS ) ./test/experimental-e2e/...;
You can’t perform that action at this time.
0 commit comments