(pytester: Pytester)
| 123 | |
| 124 | |
| 125 | def test_debug(pytester: Pytester) -> None: |
| 126 | result = pytester.runpytest_subprocess(class="st">"--debug") |
| 127 | assert result.ret == ExitCode.NO_TESTS_COLLECTED |
| 128 | p = pytester.path.joinpath(class="st">"pytestdebug.log") |
| 129 | assert class="st">"pytest_sessionstart" in p.read_text(class="st">"utf-8") |
| 130 | |
| 131 | |
| 132 | def test_PYTEST_DEBUG(pytester: Pytester, monkeypatch) -> None: |
nothing calls this directly
no test coverage detected