Cody D'Ambrosio
Cody D'Ambrosio
I can see in junitxml, there is some caching by nodeid ``` def node_reporter(self, report: TestReport | str) -> _NodeReporter: nodeid: str | TestReport = getattr(report, "nodeid", report) # Local...
Since this should be a drop-in replacement for unittest, I reviewed the [unittest-xml-reporting](https://github.com/xmlrunner/unittest-xml-reporting) plugin to see how it handles subtests in their JUnit XML: ``` ``` I don't love their...
currently, yes. I'd advocate reporting ALL subtests as normal "testcase" entries, pass or fail.