You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my Automation Suite, I am running multiple session, but single HTML report is getting generated which contains test report of all the session combined. Is there a way to generate report for each session individually ?
The text was updated successfully, but these errors were encountered:
@BeyondEvil No, I am using a parametrised session scoped fixture and wanted to generate report at the end of every session, as a part of teardown of that fixture.
Similar to #254, this would require a major refactor due to the fact that today, the entire report is done in memory until the pytest_sessionfinish hook is called - that's when the writing of the report to disk happens.
One option would be for you to import the HTMLReport class yourself, and add the logic necessary to generate a report for each session.
In my Automation Suite, I am running multiple session, but single HTML report is getting generated which contains test report of all the session combined. Is there a way to generate report for each session individually ?
The text was updated successfully, but these errors were encountered: