From 8459edeff8d71114440aaf688b882acde2988d9e Mon Sep 17 00:00:00 2001 From: Stefan Benz <46600784+stebenz@users.noreply.github.com> Date: Wed, 9 Jul 2025 16:32:09 +0200 Subject: [PATCH] chore: always run tests for coverage --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e5b6280dbf..9909745493 100644 --- a/Makefile +++ b/Makefile @@ -8,8 +8,8 @@ COMMIT_SHA ?= $(shell git rev-parse HEAD) ZITADEL_IMAGE ?= zitadel:local GOCOVERDIR = tmp/coverage/integration -GOCOVERDIR_INTEGRATION = "$(shell pwd)/${GOCOVERDIR}" -GOCOVERDIR_UNIT = "$(shell pwd)/tmp/coverage/unit" +GOCOVERDIR_INTEGRATION = $(shell pwd)/${GOCOVERDIR} +GOCOVERDIR_UNIT = $(shell pwd)/tmp/coverage/unit ZITADEL_MASTERKEY ?= MasterkeyNeedsToHave32Characters export GOCOVERDIR GOCOVERDIR_INTEGRATION GOCOVERDIR_UNIT ZITADEL_MASTERKEY