From 590d7a527d43e4a50fcf74839e516ff7b869434f Mon Sep 17 00:00:00 2001 From: Paul Ganssle <1377457+pganssle@users.noreply.github.com> Date: Fri, 12 May 2023 12:23:08 -0400 Subject: [PATCH] GH-86275: Run hypothesis tests in parallel (#104427) Run hypothesis tests in parallel --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f0a2dd5694c078..69b78e5567adb1 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 \