我对Allure还是很陌生,我正在尝试在报告中生成测试描述。查看其他SO问题和pytest-allure-adaptor文档,似乎没有选择这样做。
我最接近的是这样写的:
def test_one():
"""
This is the test description.
"""
assert pass
这是非常有限的,因为它会自动将其折叠。在“魅力”示例报告中,您可以看到它们可以使用标题,也可以使用某种降价。如何使用pytest-allure-adaptor做到这一点?
最佳答案
目前,您无法在PyTest Adaptor中更改描述的类型。参见问题https://github.com/allure-framework/allure-python/issues/93
关于python - Pytest/Allure -如何生成测试用例描述?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36260895/