Skip to content

Commit c4c23b6

Browse files
committed
cov in numpydev
1 parent cde9379 commit c4c23b6

File tree

1 file changed

+7
-11
lines changed

1 file changed

+7
-11
lines changed

.github/workflows/posix.yml

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,16 @@ jobs:
1717
strategy:
1818
matrix:
1919
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"]
2923
]
3024
fail-fast: true
3125
env:
3226
COVERAGE: true
3327
PYTEST_WORKERS: "auto"
28+
PATTERN: ${{ matrix.env-file[1] }}
29+
3430

3531
steps:
3632
- name: Checkout
@@ -43,13 +39,13 @@ jobs:
4339
with:
4440
path: ~/conda_pkgs_dir
4541
key: ${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-${{
46-
hashFiles('${{ matrix.env-file }}') }}
42+
hashFiles('${{ matrix.env-file[0] }}') }}
4743

4844
- uses: conda-incubator/setup-miniconda@v2
4945
with:
5046
activate-environment: pandas-dev
5147
channel-priority: flexible
52-
environment-file: ${{ matrix.env-file }}
48+
environment-file: ${{ matrix.env-file[0] }}
5349
use-only-tar-bz2: true
5450

5551
- name: Build Pandas

0 commit comments

Comments
 (0)