2

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?

Max Voitko
  • 1,276
  • 1
  • 12
  • 26
Alex Osheter
  • 475
  • 4
  • 16

1 Answers1

1

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

Dmitry Baev
  • 2,075
  • 10
  • 22