Skip to content

Commit 7e11612

Browse files
committed
Revert "CI: only pytest standard linux platforms"
This reverts commit 2af0a28.
1 parent 2af0a28 commit 7e11612

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

.github/workflows/CI.yml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,29 @@ jobs:
4242
name: wheels
4343
path: dist
4444
- name: pytest
45-
if: ${{ startsWith(matrix.target, 'x86') || matrix.target == 'aarch64' }}
45+
if: ${{ startsWith(matrix.target, 'x86_64') }}
4646
shell: bash
4747
run: |
4848
set -e
4949
ls dist/*
5050
pip install cotengrust --find-links dist --force-reinstall
5151
pip install pytest numpy cotengra
5252
pytest --verbose
53+
- name: pytest
54+
if: ${{ !startsWith(matrix.target, 'x86') && matrix.target != 'ppc64' }}
55+
uses: uraimo/[email protected]
56+
with:
57+
arch: ${{ matrix.target }}
58+
distro: ubuntu22.04
59+
githubToken: ${{ github.token }}
60+
install: |
61+
apt-get update
62+
apt-get install -y --no-install-recommends python3 python3-pip
63+
pip3 install -U pip pytest numpy cotengra
64+
run: |
65+
set -e
66+
pip3 install cotengrust --find-links dist --force-reinstall
67+
pytest --verbose
5368
5469
windows:
5570
runs-on: windows-latest

0 commit comments

Comments
 (0)