refactoring

This commit is contained in:
dcsena 2023-03-19 18:13:20 -04:00
commit 6c10dabd3f
2 changed files with 2 additions and 2 deletions

View file

@ -56,7 +56,7 @@ jobs:
if: ${{ matrix.python-impl != 'jython' }} if: ${{ matrix.python-impl != 'jython' }}
run: pip install nose run: pip install nose
- name: Install yourbase - name: Install yourbase
if: ${{ matrix.python-version > 3.5 and matrix.python-version < 4.0}} if: ${{ matrix.python-version > 3.5 & matrix.python-version < 4.0}}
run: pip install yourbase; pip install --force-reinstall coverage==6.1 run: pip install yourbase; pip install --force-reinstall coverage==6.1
- name: Install nose (Jython) - name: Install nose (Jython)
if: ${{ matrix.python-impl == 'jython' }} if: ${{ matrix.python-impl == 'jython' }}

View file

@ -1,7 +1,7 @@
import sys import sys
if sys.version[0:3] > '3.5': if sys.version[0:3] > '3.5' and sys.version[0:3] < '4.0':
import unittest import unittest
import yourbase import yourbase