Write a pyproject.toml file with 'source' as contents. .. versionadded:: 6.0
(self, source: str)
| 843 | return IniConfig(str(p))["pytest"] |
| 844 | |
| 845 | def makepyprojecttoml(self, source: str) -> Path: |
| 846 | """Write a pyproject.toml file with 'source' as contents. |
| 847 | |
| 848 | .. versionadded:: 6.0 |
| 849 | """ |
| 850 | return self.makefile(".toml", pyproject=source) |
| 851 | |
| 852 | def makepyfile(self, *args, **kwargs) -> Path: |
| 853 | r"""Shortcut for .makefile() with a .py extension. |
no test coverage detected