用于会话的Pytest设置/拆卸挂钩

时间:2016-11-17 17:00:48

标签: python unit-testing hook pytest

Pytest has setup and teardowns module, class, method的挂钩。

我想在设置中(在测试会话开始之前)创建我的自定义测试环境,并在完成所有测试之后进行清理。 换句话说,我如何使用setup_session and teardown_session等挂钩?

1 个答案:

答案 0 :(得分:8)

这些钩子对我很有用:

def pytest_sessionstart(session):
    # setup_stuff

def pytest_sessionfinish(session, exitstatus):
    # teardown_stuff

但实际上下一个具有会话范围的夹具看起来更漂亮:

@fixture(autouse=True, scope='session')
def my_fixture():
    # setup_stuff
    yield
    # teardown_stuff