I really like py.test, but I am having lots of difficulty understanding how funcargs work.

Is it possible to use a command line argument or an extension to enable the use of something that performs a similar role to unittest.TestCase.setUp and unittest.TestCase.tearDown?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

py.test supports "normal" xunit method-based fixtures by default, see:

http://codespeak.net/py/dist/test/xunit_setup.html

Alternatively you can subclass from unittest.TestCase and use .setUp/tearDown but the latter may be a bit limited.

link|improve this answer
Thanks! I was certain that this was possible, because I've heard you mention in your talks. – Tim McNamara Sep 23 '10 at 18:58
That link is stale, this one works: pytest.org/xunit_setup.html#xunitsetup – TryPyPy Jan 21 '11 at 3:26
feedback

Your Answer

 
or
required, but never shown

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