I am using pytest
HTML report plugin for my selenium tests.
It works great with just passing test.py --html==report.htmlin
command line and generates a great report.
I also need to implement additional string/variable to each test case display. It doesn't matter if it's pass or failed it should just show "ticket number". This ticket id I can return in each test scenario.
I could just add ticket number to test name, but it will look ugly.
Please advise what's the best way to do it.
Thank you.