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
30
30
export E2E_TEST_CATALOG_V1 := e2e/test-catalog:v1
31
31
export E2E_TEST_CATALOG_V2 := e2e/test-catalog:v2
32
32
export CATALOG_IMG := $(LOCAL_REGISTRY_HOST ) /$(E2E_TEST_CATALOG_V1 )
33
+
33
34
# Order matters here, the ".../registries.conf" entry must be last.
34
35
export DOWNSTREAM_E2E_FLAGS := -count=1 -v -skip 'TestClusterExtensionInstallReResolvesWhenNewCatalog|TestClusterExtensionInstallRegistryDynamic|TestClusterExtensionInstallRegistry/package_requires_mirror_registry_configuration_in_/etc/containers/registries.conf'
35
36
.PHONY : test-e2e
36
37
test-e2e : # # Run the e2e tests.
37
38
$(DIR ) /operator-controller/build-test-registry.sh $(E2E_REGISTRY_NAMESPACE ) $(E2E_REGISTRY_NAME ) $(E2E_REGISTRY_IMAGE )
38
39
cd $(DIR ) /../; \
39
40
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