(self, tmp_path: Path, name: str)
| 1362 | |
| 1363 | @pytest.mark.parametrize("name", ["setup.cfg", "tox.ini"]) |
| 1364 | def test_pytestini_overrides_empty_other(self, tmp_path: Path, name: str) -> None: |
| 1365 | inipath = tmp_path / "pytest.ini" |
| 1366 | inipath.touch() |
| 1367 | a = tmp_path / "a" |
| 1368 | a.mkdir() |
| 1369 | (a / name).touch() |
| 1370 | rootpath, parsed_inipath, _ = determine_setup(None, [str(a)]) |
| 1371 | assert rootpath == tmp_path |
| 1372 | assert parsed_inipath == inipath |
| 1373 | |
| 1374 | def test_setuppy_fallback(self, tmp_path: Path) -> None: |
| 1375 | a = tmp_path / "a" |
nothing calls this directly
no test coverage detected