From c31ded476f1e5a94c70c17d6ba14aa74cce028f9 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Fri, 25 Apr 2025 11:46:34 +0200 Subject: [PATCH] gh-132912: Set 15 min timeout on GHA Hypothesis CI --- .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 366f8a8d44d1d1..b192508c78685c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -422,8 +422,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 \