Ramya2801
Ramya2801
**Example unit test:** ```python import pytest @pytest.mark.tags('html_report') def test_failing_example(): assert 1 == 2` ``` **conftest.py** ```python import pytest @pytest.hookimpl(tryfirst=True) def pytest_html_results_table_header(cells): cells.insert(3, html.th("snapshot", class_="sortable", col="snapshot")) @pytest.hookimpl(tryfirst=True) def pytest_html_results_table_row(report, cells): #code...
`pytest` I am experiencing the same behavior when I run with pytest as well... Pytest command :`pytest --color=yes --tags=pytest_html` `--tags ` these tags were configured in another file ``` def...