(pytester: Pytester)
| 143 | |
| 144 | |
| 145 | def test_doubledash_considered(pytester: Pytester) -> None: |
| 146 | conf = pytester.mkdir("--option") |
| 147 | conf.joinpath("conftest.py").touch() |
| 148 | conftest = PytestPluginManager() |
| 149 | conftest_setinitial(conftest, [conf.name, conf.name]) |
| 150 | values = conftest._getconftestmodules(conf) |
| 151 | assert len(values) == 1 |
| 152 | |
| 153 | |
| 154 | def test_issue151_load_all_conftests(pytester: Pytester) -> None: |
nothing calls this directly
no test coverage detected