Skip to content

Commit

Permalink
Replace nose with Pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
Tenzer committed Sep 6, 2024
1 parent 995451b commit 1074a8c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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='''
Expand Down

0 comments on commit 1074a8c

Please sign in to comment.