You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Nose has been in maintenance mode for the past several years and will likely cease without a new person/team to take over maintainership. New projects should consider using Nose2, py.test, or just plain unittest/unittest2.
Since it is only being used as a test runner, and all of the tests are written using the unittest framework already, I would propose switching to using unittest as the test runner as well. This would change the test run command from:
nosetests
to:
python -m unittest
Or, to keep coverage reporting:
coverage run -m unittest
The text was updated successfully, but these errors were encountered:
According to the Nose docs:
Since it is only being used as a test runner, and all of the tests are written using the
unittest
framework already, I would propose switching to usingunittest
as the test runner as well. This would change the test run command from:to:
Or, to keep coverage reporting:
The text was updated successfully, but these errors were encountered: