Jim Brännlund
Jim Brännlund
> > Can you try `4.0.0rc0` and see if it works as expected? > > Could be a breaking change there? I get: > > ``` > INTERNALERROR> extra.append(pytest_html.extras.url(issue, name=issue_id))...
This is awesome feedback, thank you! 🙏 > > > > Can you try ”from pytest_html import extras” instead? > > Right, I found the problem (I used pluginmanager to...
Proper v4 is released now if you're interested in revisiting this @mganisin ?
That's not currently possible but is a feature that has been discussed. Can you share more detail about your use case? It will help us determine a way forward.
Maybe a first version of this support is to simply allow a custom jinja-template, and then leave it up to the user to figure out how to make it work....
I didn't know jinja supported inherit-type functionality.
Does it work with previous 4.x versions?
According to the [documentation](https://pytest-html.readthedocs.io/en/latest/user_guide.html#modifying-the-results-table). The row `td`'s need a class name that matches the `data-column-type`. So in your case, this should solved it: ```python def pytest_html_results_table_row(report, cells): ref = "CKD...
Could you create a minimal reproducible example/test-case?
That comes from pytest itself (part of `nodeid`), and I'm extremely reluctant to modify it.