Write a tox.ini file. :param source: The contents. :returns: The tox.ini file.
(self, source: str)
| 834 | return self.makepyfile(conftest=source) |
| 835 | |
| 836 | def makeini(self, source: str) -> Path: |
| 837 | """Write a tox.ini file. |
| 838 | |
| 839 | :param source: The contents. |
| 840 | :returns: The tox.ini file. |
| 841 | """ |
| 842 | return self.makefile(".ini", tox=source) |
| 843 | |
| 844 | def maketoml(self, source: str) -> Path: |
| 845 | """Write a pytest.toml file. |
no test coverage detected