lifeomic / phc-sdk-py

The phc-sdk-py is a developer kit for interfacing with the PHC API on Python 3.8 and above.
https://lifeomic.github.io/phc-sdk-py/index.html
MIT License
1 stars 2 forks source link

Switch to pytest #149

Closed rcdilorenzo closed 3 years ago

rcdilorenzo commented 3 years ago

Pytest has been a so much better experience. It allows you to write assert with automatic introspection and the watcher tool for pytest (pytest-watch) operates so much better.

jonathanbranam commented 3 years ago

Funny I just did the same thing on my phc-notebook project. Nose is dead, there is Nose2 but I also found pytest to work just fine. https://nose.readthedocs.io/en/latest/

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