From b9f5497a1d016044abc7a4ed73f530a9a98deafc Mon Sep 17 00:00:00 2001 From: adlerhurst <27845747+adlerhurst@users.noreply.github.com> Date: Mon, 28 Jul 2025 22:56:33 +0200 Subject: [PATCH] add events tests to integration --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ad561ab725..438e7c0941 100644 --- a/Makefile +++ b/Makefile @@ -138,7 +138,7 @@ core_integration_server_start: core_integration_setup .PHONY: core_integration_test_packages core_integration_test_packages: - go test -race -count 1 -tags integration -timeout 30m $$(go list -tags integration ./... | grep "integration_test") + go test -race -count 1 -tags integration -timeout 30m $$(go list -tags integration ./... | grep -e "integration_test" -e "events_testing") .PHONY: core_integration_server_stop core_integration_server_stop: @@ -152,7 +152,7 @@ core_integration_server_stop: .PHONY: core_integration_reports core_integration_reports: - go tool covdata textfmt -i=tmp/coverage -pkg=github.com/zitadel/zitadel/internal/...,github.com/zitadel/zitadel/cmd/... -o profile.cov + go tool covdata textfmt -i=tmp/coverage -pkg=github.com/zitadel/zitadel/internal/...,github.com/zitadel/zitadel/cmd/...,,github.com/zitadel/zitadel/backend/... -o profile.cov .PHONY: core_integration_test core_integration_test: core_integration_server_start core_integration_test_packages core_integration_server_stop core_integration_reports