pytest常用hook函数
Posted 强哥不强
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pytest常用hook函数相关的知识,希望对你有一定的参考价值。
pytest_runtest_makereport 说明:收集每个用例三个阶段的执行结果 先执行when='setup' 返回前置的执行结果 然后执行when='call' 返回用例步骤的执行结果 最后执行when='teardown'返回后置的执行结果 参数: item - 测试用例 call -
以上是关于pytest常用hook函数的主要内容,如果未能解决你的问题,请参考以下文章
Python的hook函数(pytest_generate_tests())进行测试的参数化
pytest文档33-Hooks函数获取用例执行结果(pytest_runtest_makereport)