Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .scripts/test-coverage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ while IFS= read -r mod; do
html="$REPORTS/coverage-${name}.html"

printf '\033[90m--- %s\033[0m\n' "$mod"
if [ "$mod" = "." ]; then
echo "DIAGNOSTIC: running internal/mcp with verbose + tight timeout"
(cd "$dir" && go test -v -count=1 -timeout 60s ./internal/mcp/...) || true
echo "DIAGNOSTIC: end of internal/mcp run"
fi
if (cd "$dir" && go_test go test -timeout "${TEST_TIMEOUT:-3m}" -coverprofile="$profile" -covermode=atomic ./...); then
printf ' \033[32mPASS\033[0m\n\n'
PASS=$((PASS + 1))
Expand Down
Loading