Unit tests in Python - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T02:57:33Zhttp://stackoverflow.com/feeds/question/36647http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/36647/unit-tests-in-python10Unit tests in PythonSam McAfee2008-08-31T05:07:41Z2009-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#3664814Answer by John Millikin for Unit tests in PythonJohn Millikin2008-08-31T05:09:33Z2008-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#366513Answer by Yon for Unit tests in PythonYon2008-08-31T05:20:32Z2008-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#366530Answer by Greg Hewgill for Unit tests in PythonGreg Hewgill2008-08-31T05:35:50Z2008-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#366542Answer by John Millikin for Unit tests in PythonJohn Millikin2008-08-31T05:37:18Z2008-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#368000Answer by Blair Conrad for Unit tests in PythonBlair Conrad2008-08-31T11:53:28Z2008-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#368350Answer by dbr for Unit tests in Pythondbr2008-08-31T12:44:46Z2008-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#376205Answer by codeape for Unit tests in Pythoncodeape2008-09-01T08:30:52Z2008-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#13101190Answer by Chris Boesch for Unit tests in PythonChris Boesch2009-08-21T04:41:05Z2009-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>