Write a tox.ini file with 'source' as contents.
(self, source: str)
| 834 | return self.makepyfile(conftest=source) |
| 835 | |
| 836 | def makeini(self, source: str) -> Path: |
| 837 | """Write a tox.ini file with 'source' as contents.""" |
| 838 | return self.makefile(".ini", tox=source) |
| 839 | |
| 840 | def getinicfg(self, source: str) -> SectionWrapper: |
| 841 | """Return the pytest section from the tox.ini config file.""" |
no test coverage detected