From f9dfc64c6fc749693d6ffb7e84c0e08e1a8c650d Mon Sep 17 00:00:00 2001 From: epenet <6771947+epenet@users.noreply.github.com> Date: Mon, 14 Oct 2024 17:20:58 +0200 Subject: [PATCH] Use long option for pytest numprocesses (#128354) --- .github/workflows/ci.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 55ec28f9118..77e00baae77 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -944,7 +944,7 @@ jobs: -qq \ --timeout=9 \ --durations=10 \ - -n auto \ + --numprocesses auto \ --dist=loadfile \ ${cov_params[@]} \ -o console_output_style=count \ @@ -1066,7 +1066,7 @@ jobs: python3 -b -X dev -m pytest \ -qq \ --timeout=20 \ - -n 1 \ + --numprocesses 1 \ ${cov_params[@]} \ -o console_output_style=count \ --durations=10 \ @@ -1192,7 +1192,7 @@ jobs: python3 -b -X dev -m pytest \ -qq \ --timeout=9 \ - -n 1 \ + --numprocesses 1 \ ${cov_params[@]} \ -o console_output_style=count \ --durations=0 \ @@ -1338,7 +1338,7 @@ jobs: python3 -b -X dev -m pytest \ -qq \ --timeout=9 \ - -n auto \ + --numprocesses auto \ ${cov_params[@]} \ -o console_output_style=count \ --durations=0 \