https://github.com/python/cpython/commit/76840557bc33c76f1cf2bf9daed8ea5dcaf55b2c commit: 76840557bc33c76f1cf2bf9daed8ea5dcaf55b2c branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: vstinner <[email protected]> date: 2025-04-25T13:54:36Z summary:
[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 <[email protected]> files: M .github/workflows/build.yml 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 \ _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
