Skip to content

Commit

Permalink
upd workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
MiXaiLL76 committed Oct 31, 2024
1 parent 031910d commit 839929c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
include:
- os: ubuntu-latest # linux x86_64
cibw_archs: x86_64
cibw_skip: "pp*"
cibw_skip: "pp* *musllinux*"
- os: ubuntu-latest # linux arm64 gnu
cibw_archs: aarch64
cibw_skip: "pp* *musllinux*"
Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ jobs:
pipx run build --sdist .
source_file=$(ls ./dist/*.tar.gz)
pip install "${source_file}[tests]"
cd tests
- name: Run test cases
run: cd tests && pytest --cov=faster_coco_eval .
- name: Run test cases numpy latest
run: pytest --cov=faster_coco_eval .

- name: Run test cases numpy < 2
run: |
pip install numpy<2
pytest --cov=faster_coco_eval .

0 comments on commit 839929c

Please sign in to comment.