From 7c1de5fdf6e4bc7414c9eede143074cd2135faf9 Mon Sep 17 00:00:00 2001 From: JerrettDavis Date: Fri, 27 Mar 2026 12:42:59 -0500 Subject: [PATCH] fix(ci): increase test coverage timeout from 10m to 20m Tests with coverage collection were timing out at 10 minutes on CI runners. Increased to 20 minutes to accommodate coverage overhead. Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e6afd46..3203471 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,7 +50,7 @@ jobs: docfx build docs/docfx.json - name: Test with coverage - timeout-minutes: 10 + timeout-minutes: 20 run: | dotnet test PatternKit.slnx \ --configuration Release \ @@ -162,7 +162,7 @@ jobs: /p:PackageVersion=${{ env.PACKAGE_VERSION }} - name: Test with coverage (Release) - timeout-minutes: 10 + timeout-minutes: 20 run: | dotnet test PatternKit.slnx \ --configuration Release \