Unit tests in Python - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T02:57:33Z http://stackoverflow.com/feeds/question/36647 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/36647/unit-tests-in-python 10 Unit tests in Python Sam McAfee 2008-08-31T05:07:41Z 2009-08-21T04:41:05Z <p>Does Python have a unit testing framework compatible with the standard xUnit style of test framework? If so, what is it, where is it, and is it any good?</p> http://stackoverflow.com/questions/36647/unit-tests-in-python/36648#36648 14 Answer by John Millikin for Unit tests in Python John Millikin 2008-08-31T05:09:33Z 2008-08-31T05:09:33Z <p>Python has several testing frameworks, including <code>unittest</code>, <code>doctest</code>, and <code>nose</code>. The most xUnit-like is <code>unittest</code>, which is documented on Python.org.</p> <ul> <li><a href="http://docs.python.org/lib/module-unittest.html" rel="nofollow"><code>unittest</code> documentation</a></li> <li><a href="http://docs.python.org/lib/module-doctest.html" rel="nofollow"><code>doctest</code> documentation</a></li> </ul> http://stackoverflow.com/questions/36647/unit-tests-in-python/36651#36651 3 Answer by Yon for Unit tests in Python Yon 2008-08-31T05:20:32Z 2008-08-31T05:20:32Z <p>There's <a href="http://testoob.sourceforge.net/" rel="nofollow">testoob</a> which is pretty complete suite of test.Also xUnit-ie, and has a nice reporting option</p> http://stackoverflow.com/questions/36647/unit-tests-in-python/36653#36653 0 Answer by Greg Hewgill for Unit tests in Python Greg Hewgill 2008-08-31T05:35:50Z 2008-08-31T05:35:50Z <p>There is also <a href="http://pyunit.sourceforge.net/" rel="nofollow">PyUnit</a> which might be what you're looking for.</p> http://stackoverflow.com/questions/36647/unit-tests-in-python/36654#36654 2 Answer by John Millikin for Unit tests in Python John Millikin 2008-08-31T05:37:18Z 2008-08-31T05:37:18Z <p>@Greg: PyUnit is included in the standard library as <code>unittest</code></p> http://stackoverflow.com/questions/36647/unit-tests-in-python/36800#36800 0 Answer by Blair Conrad for Unit tests in Python Blair Conrad 2008-08-31T11:53:28Z 2008-08-31T11:53:28Z <p>Consider <a href="http://codespeak.net/py/dist/test.html" rel="nofollow">py.test</a>. Not exactly analogous to NUnit, but very good, with nice features including test auto-discovery and a "Watch the tests and code - when something changes rerun the tests that failed last time. As soon as all the tests pass, switch to running all the tests whenever somethings changes." option.</p> http://stackoverflow.com/questions/36647/unit-tests-in-python/36835#36835 0 Answer by dbr for Unit tests in Python dbr 2008-08-31T12:44:46Z 2008-08-31T12:44:46Z <p>Never used xUnit, so I can't tell you if the frameworks are good/bad comparativly, but <a href="http://github.com/dbr/tvdb_api/tree/master/tvdb_api.py#L518-575" rel="nofollow">here</a> is a script I wrote which uses the unittest framework (to check the API works as it should), and the doctest (to check the examples I've given work)</p> <p>My only problem is checking something raises an exception is slightly convoluted (you have to pass it a function/lambda that raises the exception, rather than just the command itself, like the rest of the framework).. Other than that, it does what it should, reliably, and it has been included in the default python distribution for quite some time.</p> http://stackoverflow.com/questions/36647/unit-tests-in-python/37620#37620 5 Answer by codeape for Unit tests in Python codeape 2008-09-01T08:30:52Z 2008-09-01T08:30:52Z <p>I recommend <a href="http://www.somethingaboutorange.com/mrl/projects/nose/" rel="nofollow">nose</a>.</p> <p>It is the most Pythonic of the unit test frameworks. The test runner runs both doctests and unittests, so you are free to use whatever style of test you like.</p> http://stackoverflow.com/questions/36647/unit-tests-in-python/1310119#1310119 0 Answer by Chris Boesch for Unit tests in Python Chris Boesch 2009-08-21T04:41:05Z 2009-08-21T04:41:05Z <p>I recommend Nose. </p> <p>After the reasonable simple installation, you just have to run "nosetests" in your project folder and Nose will find all your tests and run them. I also like the collection of plugins (coverage, GAE, etc.) and the abilty to call Nose directly from within my Python scripts. </p>