diff options
author | Paul Ganssle <1377457+pganssle@users.noreply.github.com> | 2023-05-12 16:23:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-12 16:23:08 (GMT) |
commit | 590d7a527d43e4a50fcf74839e516ff7b869434f (patch) | |
tree | 1d4a6f23fc3f8b84c15f5764642375c8aa6508d5 /.github | |
parent | b7597dab2c9ef7b825e190c5e4b130203361df24 (diff) | |
download | cpython-590d7a527d43e4a50fcf74839e516ff7b869434f.zip cpython-590d7a527d43e4a50fcf74839e516ff7b869434f.tar.gz cpython-590d7a527d43e4a50fcf74839e516ff7b869434f.tar.bz2 |
GH-86275: Run hypothesis tests in parallel (#104427)
Run hypothesis tests in parallel
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f0a2dd5..69b78e5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -377,6 +377,8 @@ jobs: # failing when executed from inside a virtual environment. ${{ env.VENV_PYTHON }} -m test \ -W \ + -o \ + -j4 \ -x test_asyncio \ -x test_multiprocessing_fork \ -x test_multiprocessing_forkserver \ |