From 41efac029cbfeae05a69026a2baf145a07bf9503 Mon Sep 17 00:00:00 2001 From: Catarina Paralta <46568597+paralta@users.noreply.github.com> Date: Thu, 7 Sep 2023 18:03:33 +0100 Subject: [PATCH] feat(test): build all services when running e2e tests (#660) --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 433aabad1..d4294f53c 100644 --- a/Makefile +++ b/Makefile @@ -127,12 +127,14 @@ test: ## Run Unit Tests @go test ./... .PHONY: e2e -e2e: docker-apiserver docker-cli docker-orchestrator ## Run go e2e test against code +e2e: docker-apiserver docker-cli docker-orchestrator docker-ui docker-ui-backend ## Run go e2e test against code @cd e2e && \ export APIServerContainerImage=${DOCKER_REGISTRY}/vmclarity-apiserver:${DOCKER_TAG} && \ export OrchestratorContainerImage=${DOCKER_REGISTRY}/vmclarity-orchestrator:${DOCKER_TAG} && \ export ScannerContainerImage=${DOCKER_REGISTRY}/vmclarity-cli:${DOCKER_TAG} && \ - go test -v -failfast -test.v -test.paniconexit0 -timeout 2h -ginkgo.v . + export UIContainerImage=${DOCKER_REGISTRY}/vmclarity-ui:${DOCKER_TAG} && \ + export UIBackendContainerImage=${DOCKER_REGISTRY}/vmclarity-ui-backend:${DOCKER_TAG} && \ + go test -v -failfast -test.v -test.paniconexit0 -timeout 2h -ginkgo.v . .PHONY: clean-ui clean-ui: