4 Commits

Author SHA1 Message Date
cc9c2a5674 ♻️ refactor: use simple coverage file approach for BDD tests (KISS principle)
All checks were successful
CI/CD Pipeline / Build Docker Cache (push) Successful in 9s
CI/CD Pipeline / CI Pipeline (push) Successful in 4m48s
2026-04-08 13:56:29 +02:00
f47094cbba 🐛 fix: extract BDD coverage directly from test output instead of file 2026-04-08 13:48:06 +02:00
6c86c6dd04 🐛 fix: add debugging to diagnose missing coverage.out file in CI 2026-04-08 13:42:24 +02:00
2b28970105 🐛 fix: add -coverprofile flag to BDD tests to generate coverage.out file for CI 2026-04-08 13:23:13 +02:00

View File

@@ -95,7 +95,7 @@ else
fi fi
# Run tests with proper coverage measurement # Run tests with proper coverage measurement
test_output=$(go test ./features/... -v -cover -coverpkg=./... 2>&1) test_output=$(go test ./features/... -v -cover -coverpkg=./... -coverprofile=coverage.out 2>&1)
test_exit_code=$? test_exit_code=$?
echo "$test_output" echo "$test_output"