Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Proposal: Eliminate nosetests #19

Open
tarkatronic opened this issue Sep 10, 2019 · 1 comment
Open

Proposal: Eliminate nosetests #19

tarkatronic opened this issue Sep 10, 2019 · 1 comment
Labels
dependencies Pull requests that update a dependency file

Comments

@tarkatronic
Copy link
Contributor

According to the Nose docs:

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
@prschmid
Copy link
Owner

Seems like an easy enough change.

As long as the tests still run and travis is setup correctly, happy to remove it.

@prschmid prschmid added the dependencies Pull requests that update a dependency file label Sep 30, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

No branches or pull requests

2 participants