Skip to content

Commit

Permalink
- continuing to try fixing pypy;
Browse files Browse the repository at this point in the history
  • Loading branch information
jaltmayerpizzorno committed Oct 26, 2024
1 parent d873fdd commit 6bb02d8
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,17 +54,20 @@ jobs:
python-version: ${{ matrix.python }}
allow-prereleases: true

- name: check compiler
if: startsWith(matrix.python, 'pypy-')
- name: install prereqs
run: |
g++ --version
python3 -m pip install -U pip # to avoid warnings
python3 -m pip install pytest
- name: install SlipCover and pytest
- name: install SlipCover (non-pypy)
if: "! startsWith(matrix.python, 'pypy-')"
run: |
python3 -m pip install -U pip # to avoid warnings
python3 -m pip install -U setuptools
python3 -m pip install .
python3 -m pip install pytest
- name: install SlipCover (pypy)
if: startsWith(matrix.python, 'pypy-')
run: |
LDSHARED="g++ -shared" python3 -m pip install .
- name: install Unix dependencies
if: matrix.os != 'windows-latest'
Expand Down

0 comments on commit 6bb02d8

Please sign in to comment.