diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5dd1de1ca..2f6dcd40c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,7 +56,7 @@ jobs: if: ${{ matrix.python-impl != 'jython' }} run: pip install nose - name: Install yourbase - if: ${{ matrix.python-version > 3.5 && matrix.python-version < 4.0}} + if: ${{ (matrix.python-version > 3.5 && matrix.python-version < 4.0) || matrix.python-version == pypy-3.6 || matrix.python-version == pypy-3.7}} run: pip install yourbase; pip install --force-reinstall coverage==6.1 - name: Install nose (Jython) if: ${{ matrix.python-impl == 'jython' }} diff --git a/test/__init__.py b/test/__init__.py index 2bf67c150..6cb5d992c 100644 --- a/test/__init__.py +++ b/test/__init__.py @@ -3,7 +3,7 @@ import platform print(platform.python_implementation()) -if sys.version[0:3] > '3.5' and sys.version[0:3] < '4.0' and platform.python_implementation() != 'pypy': +if sys.version[0:3] > '3.5' and sys.version[0:3] < '4.0': import unittest import yourbase