chg: Use pytest instead of nose

pull/672/head v2.4.152
Raphaël Vinot 2021-12-20 11:06:24 +01:00
parent eba1b2839f
commit 174a812cef
1 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.8, 3.9, '3.10']
steps:
@ -48,5 +48,5 @@ jobs:
- name: Test with Python module
run: |
pushd PyMISPGalaxies
poetry run nosetests-3.4 --with-coverage --cover-package=pymispgalaxies -d
poetry run pytest --cov=pymispgalaxies tests/tests.py
popd