diff --git a/Makefile b/Makefile index 54b83d5..eb228e4 100644 --- a/Makefile +++ b/Makefile @@ -274,6 +274,6 @@ unit-tests: test_deps $(GINKGO) -r -v --covermode=atomic --coverprofile=coverage.out -p -r ./pkg/... e2e-tests: - KUBE_VERSION=${KUBE_VERSION} $(ROOT_DIR)/script/test.sh + GINKGO=$(GINKGO) KUBE_VERSION=${KUBE_VERSION} $(ROOT_DIR)/script/test.sh kind-e2e-tests: ginkgo kind-setup install undeploy-dev deploy-dev e2e-tests \ No newline at end of file diff --git a/script/test.sh b/script/test.sh index ce50e14..99021c7 100755 --- a/script/test.sh +++ b/script/test.sh @@ -29,4 +29,4 @@ kubectl wait --for=condition=Ready node/$CLUSTER_NAME-control-plane export EXTERNAL_IP=$(kubectl get nodes -o jsonpath='{.items[].status.addresses[?(@.type == "InternalIP")].address}') export BRIDGE_IP="172.18.0.1" kubectl get nodes -o wide -cd $ROOT_DIR/tests && ginkgo -r -v ./e2e \ No newline at end of file +cd $ROOT_DIR/tests && $GINKGO -r -v ./e2e \ No newline at end of file