-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: only pytest standard linux platforms
- Loading branch information
Showing
1 changed file
with
1 addition
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/[email protected] | ||
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 | ||
|