pytest-html icon indicating copy to clipboard operation
pytest-html copied to clipboard

Plugin for generating HTML reports for pytest results

Results 218 pytest-html issues
Sort by recently updated
recently updated
newest added
trafficstars

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...

enhancement
proposal

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...

enhancement
feature

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....

enhancement

**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...

enhancement
feature

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...

question

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...

question

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: ![image](https://user-images.githubusercontent.com/5749838/75743764-0035e200-5cc7-11ea-9d47-16de1419b725.png) The problem...

bug

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`...

question

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...

question

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...

enhancement
proposal