From: Victor Stinner Date: Fri, 25 Apr 2025 13:29:16 +0000 (+0200) Subject: gh-132912: Set 15 min timeout on GHA Hypothesis CI (#132914) X-Git-Tag: v3.14.0b1~290 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eb2e430b88afa93e7bfc05f4346e8336c2c31b48;p=thirdparty%2FPython%2Fcpython.git gh-132912: Set 15 min timeout on GHA Hypothesis CI (#132914) --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 366f8a8d44d1..b192508c7868 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 \