See :meth:`Pytester.makeini`.
(self, source)
| 109 | return legacy_path(self._pytester.makeconftest(source)) |
| 110 | |
| 111 | def makeini(self, source) -> LEGACY_PATH: |
| 112 | """See :meth:`Pytester.makeini`.""" |
| 113 | return legacy_path(self._pytester.makeini(source)) |
| 114 | |
| 115 | def getinicfg(self, source: str) -> SectionWrapper: |
| 116 | """See :meth:`Pytester.getinicfg`.""" |
nothing calls this directly
no test coverage detected