(self, basedir: Path)
| 59 | yield tmp_path |
| 60 | |
| 61 | def test_basic_init(self, basedir: Path) -> None: |
| 62 | conftest = PytestPluginManager() |
| 63 | p = basedir / "adir" |
| 64 | conftest._loadconftestmodules( |
| 65 | p, importmode="prepend", rootpath=basedir, consider_namespace_packages=False |
| 66 | ) |
| 67 | assert conftest._rget_with_confmod("a", p)[1] == 1 |
| 68 | |
| 69 | def test_immediate_initialization_and_incremental_are_the_same( |
| 70 | self, basedir: Path |
nothing calls this directly
no test coverage detected