From 4a245fc447bbd0d20b5322984b332f0bbbdbd86e Mon Sep 17 00:00:00 2001 From: Steve Yegge Date: Wed, 3 Dec 2025 20:09:49 -0800 Subject: [PATCH] fix: increase Windows CI timeout to 45m MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The cmd/bd tests take ~30+ minutes on Windows due to slow filesystem operations (SQLite, git). Increase timeout to 45m to provide adequate buffer. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 22a7eea9..0c1b6c30 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -71,7 +71,7 @@ jobs: run: go build -v ./cmd/bd - name: Test - run: go test -v -short -timeout=30m -parallel=4 ./... + run: go test -v -short -timeout=45m -parallel=4 ./... lint: name: Lint