From 21560ea451412b94a22437e88c5e7c409898b189 Mon Sep 17 00:00:00 2001 From: Stephen Adamson Date: Mon, 22 Jun 2026 17:06:24 +0100 Subject: [PATCH] chore: reduce test count in dev script Change go test -count=3 to -count=1 to speed up local development iteration. Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus --- local-dev-2.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/local-dev-2.sh b/local-dev-2.sh index 071e620..d100ac1 100755 --- a/local-dev-2.sh +++ b/local-dev-2.sh @@ -1475,7 +1475,7 @@ cd /home/popertots/Crussell/backend export POSTGRES_USER POSTGRES_PASSWORD POSTGRES_HOST POSTGRES_DB GO_TESTING=1 TEST_OUTPUT_FILE=$(mktemp) START_TIME=$(date +%s) - go test -tags "test,dev" -v -count=3 -parallel 8 ./... 2>&1 | tee "$TEST_OUTPUT_FILE" || true + go test -tags "test,dev" -v -count=1 -parallel 8 ./... 2>&1 | tee "$TEST_OUTPUT_FILE" || true END_TIME=$(date +%s) DURATION=$((END_TIME - START_TIME)) MINUTES=$((DURATION / 60))