Skip to content

Commit

Permalink
Drop nose as a dependency and replace it with pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
M0r13n committed Apr 24, 2022
1 parent 21da419 commit fe25af1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 19 deletions.
16 changes: 0 additions & 16 deletions .dcignore

This file was deleted.

2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
run_tests:
nosetests -v --cover-xml --with-coverage --cover-package pyais tests/*.py
pytest --cov=pyais tests/

flake:
flake8
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ attrs
# TEST
flake8
coverage
nose
mypy
pytest
pytest-cov

# DEPLOY
twine
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"attrs"
],
extras_require={
'dev': ['nose', 'mypy', 'flake8', 'coverage', 'twine', 'sphinx']
'dev': ['mypy', 'flake8', 'coverage', 'twine', 'sphinx', 'pytest', 'pytest-cov']
},
entry_points={
"console_scripts": [
Expand Down

0 comments on commit fe25af1

Please sign in to comment.