Pytest/Allure - How to generate testcase descripti

2019-07-09 10:59发布

I'm still fairly new to Allure, and I'm trying to generate a test description in my reports. Looking at other SO questions and pytest-allure-adaptor documentation, there doesn't seem to be an option to do this.

The closest I've gotten was writing this:

def test_one():
   """
   This is the test description.
   """
   assert pass

And that's very limited, since it automatically collapses it. In the Allure example report, you can see that they can use headers and probably markdown of some sort. How do I do that with pytest-allure-adaptor?

1条回答
迷人小祖宗
2楼-- · 2019-07-09 11:48

Currently you can't change the type of description in PyTest Adaptor. See the issue https://github.com/allure-framework/allure-python/issues/93

查看更多
登录 后发表回答