|
8 | 8 | vmImage: ${{ parameters.vmImage }}
|
9 | 9 | strategy:
|
10 | 10 | matrix:
|
11 |
| - py37_np17: |
| 11 | + py37_np17_1: |
12 | 12 | ENV_FILE: ci/deps/azure-windows-37.yaml
|
13 | 13 | CONDA_PY: "37"
|
14 | 14 | PATTERN: "not slow and not network"
|
15 | 15 | PYTEST_WORKERS: 2 # GH-42236
|
| 16 | + PYTEST_TARGET: "pandas/tests/[a-i]*" |
16 | 17 |
|
17 |
| - py38_np18: |
| 18 | + py37_np17_2: |
| 19 | + ENV_FILE: ci/deps/azure-windows-37.yaml |
| 20 | + CONDA_PY: "37" |
| 21 | + PATTERN: "not slow and not network" |
| 22 | + PYTEST_WORKERS: 2 # GH-42236 |
| 23 | + PYTEST_TARGET: "pandas/tests/[j-z]*" |
| 24 | + |
| 25 | + py38_np18_1: |
| 26 | + ENV_FILE: ci/deps/azure-windows-38.yaml |
| 27 | + CONDA_PY: "38" |
| 28 | + PATTERN: "not slow and not network" |
| 29 | + PYTEST_WORKERS: 2 # GH-42236 |
| 30 | + PYTEST_TARGET: "pandas/tests/[a-i]*" |
| 31 | + |
| 32 | + py38_np18_2: |
18 | 33 | ENV_FILE: ci/deps/azure-windows-38.yaml
|
19 | 34 | CONDA_PY: "38"
|
| 35 | + PATTERN: "not slow and not network" |
| 36 | + PYTEST_WORKERS: 2 # GH-42236 |
| 37 | + PYTEST_TARGET: "pandas/tests/[j-z]*" |
| 38 | + |
| 39 | + py39_1: |
| 40 | + ENV_FILE: ci/deps/azure-windows-39.yaml |
| 41 | + CONDA_PY: "39" |
| 42 | + PATTERN: "not slow and not network and not high_memory" |
| 43 | + PYTEST_WORKERS: 2 # GH-42236 |
| 44 | + PYTEST_TARGET: "pandas/tests/[a-i]*" |
| 45 | + |
| 46 | + py39_2: |
| 47 | + ENV_FILE: ci/deps/azure-windows-39.yaml |
| 48 | + CONDA_PY: "39" |
20 | 49 | PATTERN: "not slow and not network and not high_memory"
|
21 | 50 | PYTEST_WORKERS: 2 # GH-42236
|
| 51 | + PYTEST_TARGET: "pandas/tests/[j-z]*" |
22 | 52 |
|
23 | 53 | steps:
|
24 | 54 | - powershell: |
|
|
42 | 72 |
|
43 | 73 | - bash: |
|
44 | 74 | source activate pandas-dev
|
| 75 | + wmic.exe cpu get caption, deviceid, name, numberofcores, maxclockspeed |
45 | 76 | ci/run_tests.sh
|
46 | 77 | displayName: 'Test'
|
47 | 78 |
|
|
0 commit comments