Use -short flag in release.sh to avoid test deadlock (bd-82dv)

This commit is contained in:
Steve Yegge
2025-11-08 22:58:43 -08:00
parent 98f2e85618
commit b56527d101
2 changed files with 1 additions and 2 deletions

View File

@@ -95,7 +95,7 @@ if [ "$DRY_RUN" = true ]; then
echo "[DRY RUN] Would run: TMPDIR=/tmp go test ./..."
echo "[DRY RUN] Would run: golangci-lint run ./..."
else
if ! TMPDIR=/tmp go test ./...; then
if ! TMPDIR=/tmp go test -short ./...; then
echo -e "${RED}✗ Tests failed${NC}"
exit 1
fi