Skip to content

Commit

Permalink
CI: only pytest standard linux platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
jcmgray committed Sep 7, 2023
1 parent a74607c commit 2af0a28
Showing 1 changed file with 1 addition and 16 deletions.
17 changes: 1 addition & 16 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,29 +42,14 @@ jobs:
name: wheels
path: dist
- name: pytest
if: ${{ startsWith(matrix.target, 'x86_64') }}
if: ${{ startsWith(matrix.target, 'x86') || matrix.target == 'aarch64' }}
shell: bash
run: |
set -e
ls dist/*
pip install cotengrust --find-links dist --force-reinstall
pip install pytest numpy cotengra
pytest --verbose
- name: pytest
if: ${{ !startsWith(matrix.target, 'x86') && matrix.target != 'ppc64' }}
uses: uraimo/run-on-arch-action@v2.5.0
with:
arch: ${{ matrix.target }}
distro: ubuntu22.04
githubToken: ${{ github.token }}
install: |
apt-get update
apt-get install -y --no-install-recommends python3 python3-pip
pip3 install -U pip pytest numpy cotengra
run: |
set -e
pip3 install cotengrust --find-links dist --force-reinstall
pytest --verbose
windows:
runs-on: windows-latest
Expand Down

0 comments on commit 2af0a28

Please sign in to comment.