ci: raise the test job timeout to 30 minutes

The suite's growth (~9.7k tests, coverage-instrumented, 3-version
matrix) started brushing the 20-minute hang cap on healthy runs; 30
keeps the hang-catching semantics with headroom.
This commit is contained in:
Patrick Buckley
2026-07-22 23:01:48 -07:00
parent 5386d598ef
commit 52d38f91b1
+6 -4
View File
@@ -35,9 +35,11 @@ jobs:
test:
runs-on: ubuntu-latest
# Cap a hung run at 20 min instead of riding GitHub's 6-hour default
# (a flaky-hang run otherwise streams -v output for hours).
timeout-minutes: 20
# Cap a hung run at 30 min instead of riding GitHub's 6-hour default
# (a flaky-hang run otherwise streams -v output for hours). Was 20;
# the suite's growth (~9.7k tests, coverage-instrumented, 3-version
# matrix) started brushing the old cap on healthy runs.
timeout-minutes: 30
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
@@ -66,7 +68,7 @@ jobs:
test-postgres:
runs-on: ubuntu-latest
timeout-minutes: 20
timeout-minutes: 30
services:
postgres:
image: postgres:18