From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 25 Apr 2025 13:54:36 +0000 (+0200) Subject: [3.13] gh-132912: Set 15 min timeout on GHA Hypothesis CI (GH-132914) (#132937) X-Git-Tag: v3.13.4~223 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=76840557bc33c76f1cf2bf9daed8ea5dcaf55b2c;p=thirdparty%2FPython%2Fcpython.git [3.13] gh-132912: Set 15 min timeout on GHA Hypothesis CI (GH-132914) (#132937) gh-132912: Set 15 min timeout on GHA Hypothesis CI (GH-132914) (cherry picked from commit eb2e430b88afa93e7bfc05f4346e8336c2c31b48) Co-authored-by: Victor Stinner --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1ebea972c263..05d0e3a0c705 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 \