pytest的spec插件?

时间:2013-10-19 16:54:10

标签: nose nosetests specifications pytest

py.test的插件是否类似于noses的spec(也是pinocchio的一部分)。我想看看测试运行器输出如下所示:

Foobaz
  - behaves such and such
  - causes an error (ERROR)
  - fails to satisfy this specification (FAILED)
  - throws deprecated exception (DEPRECATED)
  - throws skip test exception (SKIPPED)

转换为列表标题的测试用例名称和测试用例方法名称将转换为列表项。或模块名称和顶级功能,它也是有意义的。

我想自己建造一个并不难,但也许已经有一个?

1 个答案:

答案 0 :(得分:1)

结帐pytest_spec。它似乎做了类似于你想要的事情,也许并不完全如此。