pytest-html
pytest-html copied to clipboard
Plugin for generating HTML reports for pytest results
Hi, I make use of pytest-html extensively and find the plugin generally fantastic. In my usage, I have resorted to some substantial modifications to the output content. Recently I found...
It would be too good if we add "report" object to the pytest_html_results_summary hook, so that in runtime can use the objects in report like outcome, location,sections,for customization option. If...
pytest-html needs an active pool of maintainers as it slowly degraded. I am offering to help with most maintenance tasks and especially around making/keeping CI/CD green and reviewing upcoming contributions....
**Use case:** I want to add custom section in pytest report and color it by red. **Implementation:** conftest.py: ``` @pytest.hookimpl(hookwrapper=True) def pytest_runtest_makereport(item, call): outcome = yield report = outcome.get_result() if...
Edit: got ist, need to convert the base64 bin file to string Edit2: seem not to be enough :-) Hi, I'm relativ new to python/pytest. I want to add some...
After every test run i am getting the video URL but when the report gets generated the URL is only shown for the 2nd test case which is of the...
Right now doing something like this: ``` import pytest from pytest_html import extras def test_ex(extra): print ("hey") extra.append(extras.text("Hello World!\n", "Hello Text")) ``` leads to something like this:  The problem...
Hello, I am currently running my tests with Appium and `pytest-xdist`, so basically the test flow is to run each test case on two different devices. After generating the `pytest-html`...
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...
Currently pytest-html report is wasting a huge amount of valuable screen space with boilerplace stuff, which most of the time are of no use to the user. In 99% of...