(self, pytester: Pytester)
| 354 | |
| 355 | @pytest.mark.xfail(reason="probably not needed") |
| 356 | def test_confcutdir(self, pytester: Pytester) -> None: |
| 357 | sub = pytester.mkdir("sub") |
| 358 | os.chdir(sub) |
| 359 | pytester.makeini( |
| 360 | """ |
| 361 | [pytest] |
| 362 | addopts = --qwe |
| 363 | """ |
| 364 | ) |
| 365 | result = pytester.inline_run("--confcutdir=.") |
| 366 | assert result.ret == 0 |
| 367 | |
| 368 | @pytest.mark.parametrize( |
| 369 | "ini_file_text, invalid_keys, warning_output, exception_text", |
nothing calls this directly
no test coverage detected