Pytest/Allure - 如何生成测试用例描述?
Pytest/Allure - How to generate testcase description?
我对 Allure 还是很陌生,我正在尝试在我的报告中生成测试描述。查看其他 SO 问题和 pytest-allure-adaptor 文档,似乎没有执行此操作的选项。
我最接近的是这样写的:
def test_one():
"""
This is the test description.
"""
assert pass
这非常有限,因为它会自动折叠它。在 Allure 示例报告中,您可以看到他们可以使用 headers 并且可能使用某种降价。我如何用 pytest-allure-adaptor 做到这一点?
目前您无法更改 PyTest Adaptor 中的描述类型。查看问题https://github.com/allure-framework/allure-python/issues/93
我对 Allure 还是很陌生,我正在尝试在我的报告中生成测试描述。查看其他 SO 问题和 pytest-allure-adaptor 文档,似乎没有执行此操作的选项。
我最接近的是这样写的:
def test_one():
"""
This is the test description.
"""
assert pass
这非常有限,因为它会自动折叠它。在 Allure 示例报告中,您可以看到他们可以使用 headers 并且可能使用某种降价。我如何用 pytest-allure-adaptor 做到这一点?
目前您无法更改 PyTest Adaptor 中的描述类型。查看问题https://github.com/allure-framework/allure-python/issues/93