(self, pytester: Pytester, capsys)
| 573 | pytest.main("-h") # type: ignore[arg-type] |
| 574 | |
| 575 | def test_invoke_with_path(self, pytester: Pytester, capsys) -> None: |
| 576 | retcode = pytest.main([str(pytester.path)]) |
| 577 | assert retcode == ExitCode.NO_TESTS_COLLECTED |
| 578 | out, err = capsys.readouterr() |
| 579 | |
| 580 | def test_invoke_plugin_api(self, capsys) -> None: |
| 581 | class MyPlugin: |
nothing calls this directly
no test coverage detected