Skip to content

Commit

Permalink
native test logic fix maybe
Browse files Browse the repository at this point in the history
  • Loading branch information
milesgranger committed Apr 15, 2024
1 parent 6e555c2 commit 28d1c7a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -285,9 +285,9 @@ jobs:
- name: Install built wheel and Test (Native)
# TODO: I'm not sure but the actual collection of tests on windows using pypy3.10 takes forever and/or fails
if: |
(matrix.conf.target == 'x86_64' || matrix.conf.target == 'universal2') &&
(matrix.python-version != 'pypy-3.10' && matrix.conf.os != 'windows-latest') &&
(!startsWith(matrix.conf.manylinux, 'musl'))
!startsWith(matrix.conf.manylinux, 'musl') &&
!( matrix.python-version == 'pypy3.10' && runner.os == 'Windows' ) &&
( matrix.conf.target == 'x86_64' || matrix.conf.target == 'universal2' )
run: |
# TODO: Remove after next release of cramjam-cli
python -m pip install pytest-benchmark cramjam
Expand Down

0 comments on commit 28d1c7a

Please sign in to comment.