Python's unittest has a handy way to perform common set up and clear down jobs by grouping the relevant functions into a class that inherits unittest.TestCase and providing setUp and tearDown functions for that class. However, I couldn't find similar mechanism in py.test. What am I missing?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

OK, I have already found the answer: it's called "Test fixture management: and is discussed here: http://agiletesting.blogspot.com/2005/01/python-unit-testing-part-3-pytest-tool.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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