| D | test_apply_pyprojecttoml.py | 84 readme = "README.rst" 136 def _pep621_example_project(tmp_path, readme="README.rst"): argument 139 replacements = {'readme = "README.rst"': f'readme = "{readme}"'} 144 (tmp_path / readme).write_text("hello world") 159 "readme, ctype", 161 ("Readme.txt", "text/plain"), 162 ("readme.md", "text/markdown"), 166 def test_readme_content_type(tmp_path, readme, ctype): argument 167 pyproject = _pep621_example_project(tmp_path, readme) 173 pyproject = _pep621_example_project(tmp_path, "README.tex") [all …]
|