(self, *k, x, **kw)
| 1376 | |
| 1377 | class MyCollector(pytest.File): |
| 1378 | def __init__(self, *k, x, **kw): |
| 1379 | super().__init__(*k, **kw) |
| 1380 | self.x = x |
| 1381 | |
| 1382 | collector = MyCollector.from_parent( |
| 1383 | parent=request.session, path=pytester.path / "foo", x=10 |
nothing calls this directly
no outgoing calls
no test coverage detected