🐛 fix: extract BDD coverage directly from test output instead of file

This commit is contained in:
2026-04-08 13:48:06 +02:00
parent 6c86c6dd04
commit f47094cbba
2 changed files with 9 additions and 16 deletions

View File

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