(
cls,
parent,
*,
fspath=None,
path: Optional[Path] = None,
**kw,
)
| 689 | |
| 690 | @classmethod |
| 691 | def from_parent( |
| 692 | cls, |
| 693 | parent, |
| 694 | *, |
| 695 | fspath=None, |
| 696 | path: Optional[Path] = None, |
| 697 | **kw, |
| 698 | ): |
| 699 | if path is not None: |
| 700 | import py.path |
| 701 | |
| 702 | fspath = py.path.local(path) |
| 703 | return super().from_parent(parent=parent, fspath=fspath, **kw) |
| 704 | |
| 705 | |
| 706 | def _setup_fixtures(doctest_item: IPDoctestItem) -> FixtureRequest: |
nothing calls this directly
no test coverage detected