(self, tmp_path: Path)
| 1372 | assert parsed_inipath == inipath |
| 1373 | |
| 1374 | def test_setuppy_fallback(self, tmp_path: Path) -> None: |
| 1375 | a = tmp_path / "a" |
| 1376 | a.mkdir() |
| 1377 | (a / "setup.cfg").touch() |
| 1378 | (tmp_path / "setup.py").touch() |
| 1379 | rootpath, inipath, inicfg = determine_setup(None, [str(a)]) |
| 1380 | assert rootpath == tmp_path |
| 1381 | assert inipath is None |
| 1382 | assert inicfg == {} |
| 1383 | |
| 1384 | def test_nothing(self, tmp_path: Path, monkeypatch: MonkeyPatch) -> None: |
| 1385 | monkeypatch.chdir(tmp_path) |
nothing calls this directly
no test coverage detected