Skip to content

Commit 7d34449

Browse files
committed
cov in numpydev
1 parent c4c23b6 commit 7d34449

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.github/workflows/posix.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,17 @@ jobs:
1717
strategy:
1818
matrix:
1919
env-file: [
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"]
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", "language-pack-it xsel"]
2323
]
2424
fail-fast: true
2525
env:
2626
COVERAGE: true
2727
PYTEST_WORKERS: "auto"
28+
ENV_FILE: ${{ matrix.env-file[0] }}
2829
PATTERN: ${{ matrix.env-file[1] }}
30+
EXTRA_APT: ${{ matrix.env-file[2] }}
2931

3032

3133
steps:
@@ -39,13 +41,16 @@ jobs:
3941
with:
4042
path: ~/conda_pkgs_dir
4143
key: ${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-${{
42-
hashFiles('${{ matrix.env-file[0] }}') }}
44+
hashFiles('${{ env.ENV_FILE }}') }}
45+
46+
- name: Extra installs
47+
run: sudo apt-get update && sudo apt-get install -y libc6-dev-i386 ${{ env.EXTRA_APT }}
4348

4449
- uses: conda-incubator/setup-miniconda@v2
4550
with:
4651
activate-environment: pandas-dev
4752
channel-priority: flexible
48-
environment-file: ${{ matrix.env-file[0] }}
53+
environment-file: ${{ env.ENV_FILE }}
4954
use-only-tar-bz2: true
5055

5156
- name: Build Pandas

0 commit comments

Comments
 (0)