(
cls,
parent,
*,
fspath=None,
path: Optional[Path] = None,
**kw,
)
| 533 | |
| 534 | @classmethod |
| 535 | def from_parent( |
| 536 | cls, |
| 537 | parent, |
| 538 | *, |
| 539 | fspath=None, |
| 540 | path: Optional[Path] = None, |
| 541 | **kw, |
| 542 | ): |
| 543 | if path is not None: |
| 544 | import py.path |
| 545 | |
| 546 | fspath = py.path.local(path) |
| 547 | return super().from_parent(parent=parent, fspath=fspath, **kw) |
| 548 | |
| 549 | |
| 550 | def _check_all_skipped(test: "doctest.DocTest") -> None: |
nothing calls this directly
no test coverage detected