diff --git a/Makefile b/Makefile index 8a5f445..2839bb2 100644 --- a/Makefile +++ b/Makefile @@ -10,8 +10,8 @@ pylint: unit_test: . ./venv/bin/activate ;\ - nosetests -c .noserc --cover-min-percentage=47 tests/unit $(extra_args) + pytest tests/unit $(extra_args) integration_test: . ./venv/bin/activate ;\ - nosetests -c .noserc tests/integration $(extra_args) + pytest tests/integration $(extra_args) diff --git a/setup.py b/setup.py index dd36163..33e90b7 100644 --- a/setup.py +++ b/setup.py @@ -27,9 +27,8 @@ ], extras_require={ 'test': [ - 'nose==1.3.7', 'pylint==3.2.7', - 'nose-cov==1.6' + 'pytest==8.3.2', ] }, entry_points='''