refactoring

This commit is contained in:
dcsena 2023-03-19 18:24:16 -04:00
commit 961cf1c732
2 changed files with 2 additions and 2 deletions

View file

@ -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' }}

View file

@ -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