From 165f38654a061961482ae13dec12d8ecb0c3a767 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Fri, 25 Apr 2025 15:29:16 +0200 Subject: [PATCH] gh-132912: Set 15 min timeout on GHA Hypothesis CI (GH-132914) (cherry picked from commit eb2e430b88afa93e7bfc05f4346e8336c2c31b48) Co-authored-by: Victor Stinner --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1ebea972c263f8..05d0e3a0c70556 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -457,8 +457,9 @@ jobs: # failing when executed from inside a virtual environment. "${VENV_PYTHON}" -m test \ -W \ - -o \ + --slowest \ -j4 \ + --timeout 900 \ -x test_asyncio \ -x test_multiprocessing_fork \ -x test_multiprocessing_forkserver \