From 3254c048eb806ea2322868a6617322ea4f3b7eea Mon Sep 17 00:00:00 2001 From: Irv Lustig Date: Sat, 11 Sep 2021 13:45:11 -0400 Subject: [PATCH 1/2] split macos tests in 2 --- ci/azure/posix.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/ci/azure/posix.yml b/ci/azure/posix.yml index 8b0167e52b813..30c9219aec5e4 100644 --- a/ci/azure/posix.yml +++ b/ci/azure/posix.yml @@ -9,10 +9,16 @@ jobs: strategy: matrix: ${{ if eq(parameters.name, 'macOS') }}: - py38_macos: + py38_macos_1: ENV_FILE: ci/deps/azure-macos-38.yaml CONDA_PY: "38" PATTERN: "not slow and not network" + PYTEST_TARGET: "pandas/tests/[a-i]*" + py38_macos_2: + ENV_FILE: ci/deps/azure-macos-38.yaml + CONDA_PY: "38" + PATTERN: "not slow and not network" + PYTEST_TARGET: "pandas/tests/[j-z]*" steps: - script: echo '##vso[task.prependpath]$(HOME)/miniconda3/bin' From 40ec6a792fbfbdadcbd5de5337d7c848c9bfc573 Mon Sep 17 00:00:00 2001 From: Irv Lustig Date: Sat, 11 Sep 2021 17:20:51 -0400 Subject: [PATCH 2/2] change split point between division of tests --- ci/azure/posix.yml | 4 ++-- ci/azure/windows.yml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ci/azure/posix.yml b/ci/azure/posix.yml index 30c9219aec5e4..eaac17d50c315 100644 --- a/ci/azure/posix.yml +++ b/ci/azure/posix.yml @@ -13,12 +13,12 @@ jobs: ENV_FILE: ci/deps/azure-macos-38.yaml CONDA_PY: "38" PATTERN: "not slow and not network" - PYTEST_TARGET: "pandas/tests/[a-i]*" + PYTEST_TARGET: "pandas/tests/[a-h]*" py38_macos_2: ENV_FILE: ci/deps/azure-macos-38.yaml CONDA_PY: "38" PATTERN: "not slow and not network" - PYTEST_TARGET: "pandas/tests/[j-z]*" + PYTEST_TARGET: "pandas/tests/[i-z]*" steps: - script: echo '##vso[task.prependpath]$(HOME)/miniconda3/bin' diff --git a/ci/azure/windows.yml b/ci/azure/windows.yml index f7a6a76dd0b6f..3bd20b1399be2 100644 --- a/ci/azure/windows.yml +++ b/ci/azure/windows.yml @@ -13,28 +13,28 @@ jobs: CONDA_PY: "38" PATTERN: "not slow and not network" PYTEST_WORKERS: 2 # GH-42236 - PYTEST_TARGET: "pandas/tests/[a-i]*" + PYTEST_TARGET: "pandas/tests/[a-h]*" py38_np18_2: ENV_FILE: ci/deps/azure-windows-38.yaml CONDA_PY: "38" PATTERN: "not slow and not network" PYTEST_WORKERS: 2 # GH-42236 - PYTEST_TARGET: "pandas/tests/[j-z]*" + PYTEST_TARGET: "pandas/tests/[i-z]*" py39_1: ENV_FILE: ci/deps/azure-windows-39.yaml CONDA_PY: "39" PATTERN: "not slow and not network and not high_memory" PYTEST_WORKERS: 2 # GH-42236 - PYTEST_TARGET: "pandas/tests/[a-i]*" + PYTEST_TARGET: "pandas/tests/[a-h]*" py39_2: ENV_FILE: ci/deps/azure-windows-39.yaml CONDA_PY: "39" PATTERN: "not slow and not network and not high_memory" PYTEST_WORKERS: 2 # GH-42236 - PYTEST_TARGET: "pandas/tests/[j-z]*" + PYTEST_TARGET: "pandas/tests/[i-z]*" steps: - powershell: |