首页 > TAG信息列表 > terminalreporter

pytest常用hook函数

pytest_runtest_makereport 说明:收集每个用例三个阶段的执行结果 先执行when='setup' 返回前置的执行结果 然后执行when='call' 返回用例步骤的执行结果 最后执行when='teardown'返回后置的执行结果 参数: item - 测试用例 call - 测试步骤 # conftest.py import pytest