You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test-docker-infrastructure-junit: $(SETUP_ENVTEST)$(GOTESTSUM)## Run unit and integration tests and generate a junit report for docker infrastructure provider
952
-
cd$(CAPD_DIR);set +o errexit; (KUBEBUILDER_ASSETS="$(KUBEBUILDER_ASSETS)" go test -json ./... $(TEST_ARGS);echo$$?>$(ARTIFACTS)/junit.infra_docker.exitcode) | tee $(ARTIFACTS)/junit.infra_docker.stdout
952
+
cd$(CAPD_DIR);set +o errexit; (KUBEBUILDER_ASSETS="$(KUBEBUILDER_ASSETS)" go test -race -json ./... $(TEST_ARGS);echo$$?>$(ARTIFACTS)/junit.infra_docker.exitcode) | tee $(ARTIFACTS)/junit.infra_docker.stdout
test-in-memory-infrastructure-junit: $(SETUP_ENVTEST)$(GOTESTSUM)## Run unit and integration tests and generate a junit report for in-memory infrastructure provider
966
-
cd$(CAPIM_DIR);set +o errexit; (KUBEBUILDER_ASSETS="$(KUBEBUILDER_ASSETS)" go test -json ./... $(TEST_ARGS);echo$$?>$(ARTIFACTS)/junit.infra_inmemory.exitcode) | tee $(ARTIFACTS)/junit.infra_inmemory.stdout
966
+
cd$(CAPIM_DIR);set +o errexit; (KUBEBUILDER_ASSETS="$(KUBEBUILDER_ASSETS)" go test -race -json ./... $(TEST_ARGS);echo$$?>$(ARTIFACTS)/junit.infra_inmemory.exitcode) | tee $(ARTIFACTS)/junit.infra_inmemory.stdout
test-test-extension-junit: $(SETUP_ENVTEST)$(GOTESTSUM)## Run unit and integration tests and generate a junit report for the test extension
980
-
cd$(TEST_EXTENSION_DIR);set +o errexit; (KUBEBUILDER_ASSETS="$(KUBEBUILDER_ASSETS)" go test -json ./... $(TEST_ARGS);echo$$?>$(ARTIFACTS)/junit.test_extension.exitcode) | tee $(ARTIFACTS)/junit.test_extension.stdout
980
+
cd$(TEST_EXTENSION_DIR);set +o errexit; (KUBEBUILDER_ASSETS="$(KUBEBUILDER_ASSETS)" go test -race -json ./... $(TEST_ARGS);echo$$?>$(ARTIFACTS)/junit.test_extension.exitcode) | tee $(ARTIFACTS)/junit.test_extension.stdout
0 commit comments