def setup_method(self, method):
""" setup any state tied to the execution of the given method in a
class. setup_method is invoked for every test method of a class.
"""
def teardown_method(self, method):
""" teardown any state that was previously setup with a setup_method
call.
"""
import pytest
@pytest.fixture(scope="session")
def my_setup(request):
print '
Doing setup'
def fin():
print ("
Doing teardown")
request.addfinalizer(fin)