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
This commit is contained in:
Damir Mukimov 2025-12-26 15:31:25 +01:00
parent 7a93ae04f7
commit 8f542641ea
No known key found for this signature in database
GPG Key ID: 42996CC7C73BC750

View File

@ -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/... \