See :meth:`Pytester.makeconftest`.
(self, source)
| 105 | return legacy_path(self._pytester.makefile(ext, *args, **kwargs)) |
| 106 | |
| 107 | def makeconftest(self, source) -> LEGACY_PATH: |
| 108 | """See :meth:`Pytester.makeconftest`.""" |
| 109 | return legacy_path(self._pytester.makeconftest(source)) |
| 110 | |
| 111 | def makeini(self, source) -> LEGACY_PATH: |
| 112 | """See :meth:`Pytester.makeini`.""" |
nothing calls this directly
no test coverage detected