From c821469d82ad66c076e9293cc826afeb47c7d730 Mon Sep 17 00:00:00 2001 From: Juan Altmayer Pizzorno Date: Sat, 26 Oct 2024 10:09:38 -0400 Subject: [PATCH] - more pypy fixes; --- .github/workflows/tests.yml | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9b70441..f5c2ce9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -59,20 +59,14 @@ jobs: python3 -m pip install -U pip # to avoid warnings python3 -m pip install pytest - - name: install SlipCover (non-pypy) - if: "! startsWith(matrix.python, 'pypy-')" - run: | - python3 -m pip install . - - - name: install SlipCover (pypy) - if: startsWith(matrix.python, 'pypy-') - run: | - LDCXXSHARED="g++ -shared" python3 -m pip install . - - name: install Unix dependencies if: matrix.os != 'windows-latest' run: python3 -m pip install pytest-forked + - name: install SlipCover + run: | + python3 -m pip install . + - name: run tests run: python3 -m pytest