Pytest - 测试结果的自定义输出

时间:2013-08-28 19:20:50

标签: python unit-testing testing pytest

我想完全自定义测试结果输出。 在unittest我可以通过unittest.TextTestRunner的示例实现我自己的测试运行器。我怎样才能在pytest中做同样的事情?

1 个答案:

答案 0 :(得分:2)

您需要使用pytest hooks

  

py.test调用钩子函数来实现初始化,运行,   测试执行和报告。

另见: