diff --git a/ci/azure/posix.yml b/ci/azure/posix.yml index 2caacf3a07290..4d41500093a40 100644 --- a/ci/azure/posix.yml +++ b/ci/azure/posix.yml @@ -9,10 +9,16 @@ jobs: strategy: matrix: ${{ if eq(parameters.name, 'macOS') }}: - py37_macos: + py37_macos_1: ENV_FILE: ci/deps/azure-macos-37.yaml CONDA_PY: "37" PATTERN: "not slow and not network" + PYTEST_TARGET: "pandas/tests/[a-h]*" + py37_macos_2: + ENV_FILE: ci/deps/azure-macos-37.yaml + CONDA_PY: "37" + PATTERN: "not slow and not network" + 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 b93385530d113..95d1a723548a7 100644 --- a/ci/azure/windows.yml +++ b/ci/azure/windows.yml @@ -13,28 +13,28 @@ jobs: CONDA_PY: "37" PATTERN: "not slow and not network" PYTEST_WORKERS: 2 # GH-42236 - PYTEST_TARGET: "pandas/tests/[a-i]*" + PYTEST_TARGET: "pandas/tests/[a-h]*" py37_np17_2: ENV_FILE: ci/deps/azure-windows-37.yaml CONDA_PY: "37" PATTERN: "not slow and not network" PYTEST_WORKERS: 2 # GH-42236 - PYTEST_TARGET: "pandas/tests/[j-z]*" + PYTEST_TARGET: "pandas/tests/[i-z]*" py38_np18_1: 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/[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]*" steps: - powershell: |