From 8f542641ea3518fe3059a64592ba99df88be3d57 Mon Sep 17 00:00:00 2001 From: Damir Mukimov Date: Fri, 26 Dec 2025 15:31:25 +0100 Subject: [PATCH] Update CI workflow to improve test execution for non-database dependent tests - Replace generic test command with specific Go test command for better coverage reporting - Ensure clarity in test execution by explicitly defining the packages to be tested --- .gitea/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index bb2e678..949adf9 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -260,7 +260,7 @@ jobs: echo "⚠ Running only non-database tests..." # Run only non-database dependent tests # These packages don't require database: geospatial, financial, graph, matching/plugins, middleware, pkg - $TEST_CMD \ + go test -v -coverprofile=coverage.out \ ./internal/geospatial/... \ ./internal/financial/... \ ./internal/graph/... \