Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What are the advantages and disadvantages of Python's nose library versus unittest.

share|improve this question
@wheaties: feel free to vote community wiki. I like that nose follows PEP 8 by naming its functions lowercase_with_underscores. Someone mentioned something about parallelism supported by nose. Nothing else so far. – Neil G Apr 17 '11 at 22:37

closed as not constructive by George Stocker Apr 29 at 20:14

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

up vote 57 down vote accepted

Advantages:

  • You can write test functions, and not forced to write test classes.
  • Automatic tests discovery and collecting, you do not have to build test suites manually.
  • Plugin support
  • Very useful standard plugins (coverage, output capture, drop into debugger on errors, doctests support, profiler)
  • Test tagging and easy selection of test sets based on tags.
  • Parallel testing
  • Flexible fixtures support
  • Test generators

Disadvantages:

  • I'm aware of only this one: not in standard library.
share|improve this answer
8  
Automatic test discovery (as of Python 2.7) is now in unittest: python -m unittest discover – Adam Parkin Mar 21 '12 at 18:46
Given the new additions to unittest, should I be concerned that nose might actually lack some of the features unittest has? – max Sep 11 '12 at 21:42
3  
nose also evolves. See nose2.readthedocs.org/en/latest/differences.html for more details on nose2 vs. unittest2. – abbot Sep 12 '12 at 13:59
max: no, because nose can run tests that derive from unittest.TestCase (and that's a good way to work) – Croad Langshan Apr 29 at 20:16

Not the answer you're looking for? Browse other questions tagged or ask your own question.