@@ -17,20 +17,16 @@ jobs:
17
17
strategy :
18
18
matrix :
19
19
env-file : [
20
- ci/deps/azure-37-minimum_versions.yaml,
21
- ci/deps/azure-37.yaml,
22
- ci/deps/azure-37-locale_slow.yaml,
23
- ci/deps/azure-37-slow.yaml,
24
- ci/deps/azure-38.yaml,
25
- ci/deps/azure-38-slow.yaml,
26
- ci/deps/azure-38-locale.yaml,
27
- ci/deps/azure-38-numpydev.yaml,
28
- ci/deps/azure-39.yaml
20
+ [ci/deps/azure-37-minimum_versions.yaml, "not slow and not network and not clipboard"],
21
+ [ci/deps/azure-37.yaml, "not slow and not network and not clipboard"],
22
+ [ci/deps/azure-37-locale_slow.yaml, "slow"]
29
23
]
30
24
fail-fast : true
31
25
env :
32
26
COVERAGE : true
33
27
PYTEST_WORKERS : " auto"
28
+ PATTERN : ${{ matrix.env-file[1] }}
29
+
34
30
35
31
steps :
36
32
- name : Checkout
@@ -43,13 +39,13 @@ jobs:
43
39
with :
44
40
path : ~/conda_pkgs_dir
45
41
key : ${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-${{
46
- hashFiles('${{ matrix.env-file }}') }}
42
+ hashFiles('${{ matrix.env-file[0] }}') }}
47
43
48
44
- uses : conda-incubator/setup-miniconda@v2
49
45
with :
50
46
activate-environment : pandas-dev
51
47
channel-priority : flexible
52
- environment-file : ${{ matrix.env-file }}
48
+ environment-file : ${{ matrix.env-file[0] }}
53
49
use-only-tar-bz2 : true
54
50
55
51
- name : Build Pandas
0 commit comments