8000 Fix results table modification documentation by michalkaptur · Pull Request #749 · pytest-dev/pytest-html · GitHub
[go: up one dir, main page]

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions docs/user_guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ adds a sortable time column, and removes the links column:
.. code-block:: python

import pytest
from datetime import datetime


def pytest_html_results_table_header(cells):
Expand All @@ -208,8 +209,8 @@ adds a sortable time column, and removes the links column:


def pytest_html_results_table_row(report, cells):
cells.insert(2, "<td>A description</td>")
cells.insert(1, '<td class="col-time">A time</td>')
cells.insert(2, f"<td>{report.description}</td>")
cells.insert(1, f'<td class="col-time">{datetime.utcnow()}</td>')


@pytest.hookimpl(hookwrapper=True)
Expand Down
0