From 2050eadd44d64d3ea5774ccadfc782a64ade9d35 Mon Sep 17 00:00:00 2001 From: John Spray Date: Thu, 12 Dec 2024 13:11:53 +0000 Subject: [PATCH] .github: reduce test execution concurrency --- .github/actions/run-python-test-set/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/run-python-test-set/action.yml b/.github/actions/run-python-test-set/action.yml index 1159627302..2c5788190f 100644 --- a/.github/actions/run-python-test-set/action.yml +++ b/.github/actions/run-python-test-set/action.yml @@ -135,7 +135,7 @@ runs: fi if [[ "${{ inputs.run_in_parallel }}" == "true" ]]; then # -n sets the number of parallel processes that pytest-xdist will run - EXTRA_PARAMS="-n12 $EXTRA_PARAMS" + EXTRA_PARAMS="-n10 $EXTRA_PARAMS" # --dist=loadgroup points tests marked with @pytest.mark.xdist_group # to the same worker to make @pytest.mark.order work with xdist