1
0
Fork 0
mirror of https://github.com/kubernetes-sigs/node-feature-discovery.git synced 2024-12-14 11:57:51 +00:00

Makefile: more verbose output for e2e-tests

Also fixes some indentation,
This commit is contained in:
Markus Lehtonen 2023-12-08 18:58:07 +02:00
parent 794630f7df
commit c04e022269

View file

@ -193,8 +193,9 @@ e2e-test:
-kubeconfig=$(KUBECONFIG) \
-nfd.e2e-config=$(E2E_TEST_CONFIG) \
-nfd.pull-if-not-present=$(E2E_PULL_IF_NOT_PRESENT) \
-ginkgo.focus="\[k8s-sigs\/node-feature-discovery\]" \
-ginkgo.focus="\[k8s-sigs\/node-feature-discovery\]" \
-ginkgo.label-filter=$(E2E_GINKGO_LABEL_FILTER) \
-ginkgo.v \
-test.timeout=1h \
$(if $(OPENSHIFT),-nfd.openshift,)
@if [ "$(E2E_TEST_FULL_IMAGE)" = "true" ]; then \
@ -202,8 +203,9 @@ e2e-test:
-kubeconfig=$(KUBECONFIG) \
-nfd.e2e-config=$(E2E_TEST_CONFIG) \
-nfd.pull-if-not-present=$(E2E_PULL_IF_NOT_PRESENT) \
-ginkgo.focus="\[k8s-sigs\/node-feature-discovery\]" \
-ginkgo.focus="\[k8s-sigs\/node-feature-discovery\]" \
-ginkgo.label-filter=$(E2E_GINKGO_LABEL_FILTER) \
-ginkgo.v \
-test.timeout=1h \
$(if $(OPENSHIFT),-nfd.openshift,)
fi