♻️ 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

This commit is contained in:
2026-04-08 13:56:29 +02:00
parent f47094cbba
commit cc9c2a5674
2 changed files with 7 additions and 10 deletions

View File

@@ -95,7 +95,7 @@ else
fi
# 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=$?
echo "$test_output"