Skip to content

Commit 6452e01

Browse files
committed
split macos tests in 2 (pandas-dev#43517)
1 parent edc500f commit 6452e01

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

ci/azure/posix.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,16 @@ jobs:
99
strategy:
1010
matrix:
1111
${{ if eq(parameters.name, 'macOS') }}:
12-
py37_macos:
12+
py37_macos_1:
1313
ENV_FILE: ci/deps/azure-macos-37.yaml
1414
CONDA_PY: "37"
1515
PATTERN: "not slow and not network"
16+
PYTEST_TARGET: "pandas/tests/[a-h]*"
17+
py37_macos_2:
18+
ENV_FILE: ci/deps/azure-macos-38.yaml
19+
CONDA_PY: "37"
20+
PATTERN: "not slow and not network"
21+
PYTEST_TARGET: "pandas/tests/[i-z]*"
1622

1723
steps:
1824
- script: echo '##vso[task.prependpath]$(HOME)/miniconda3/bin'

ci/azure/windows.yml

+4-5
Original file line numberDiff line numberDiff line change
@@ -13,29 +13,28 @@ jobs:
1313
CONDA_PY: "37"
1414
PATTERN: "not slow and not network"
1515
PYTEST_WORKERS: 2 # GH-42236
16-
PYTEST_TARGET: "pandas/tests/[a-i]*"
16+
PYTEST_TARGET: "pandas/tests/[a-h]*"
1717

1818
py37_np17_2:
1919
ENV_FILE: ci/deps/azure-windows-37.yaml
2020
CONDA_PY: "37"
2121
PATTERN: "not slow and not network"
2222
PYTEST_WORKERS: 2 # GH-42236
23-
PYTEST_TARGET: "pandas/tests/[j-z]*"
23+
PYTEST_TARGET: "pandas/tests/[i-z]*"
2424

2525
py38_np18_1:
2626
ENV_FILE: ci/deps/azure-windows-38.yaml
2727
CONDA_PY: "38"
2828
PATTERN: "not slow and not network"
2929
PYTEST_WORKERS: 2 # GH-42236
30-
PYTEST_TARGET: "pandas/tests/[a-i]*"
30+
PYTEST_TARGET: "pandas/tests/[a-h]*"
3131

3232
py38_np18_2:
3333
ENV_FILE: ci/deps/azure-windows-38.yaml
3434
CONDA_PY: "38"
3535
PATTERN: "not slow and not network"
3636
PYTEST_WORKERS: 2 # GH-42236
37-
PYTEST_TARGET: "pandas/tests/[j-z]*"
38-
37+
PYTEST_TARGET: "pandas/tests/[i-z]*"
3938

4039
steps:
4140
- powershell: |

0 commit comments

Comments
 (0)