(self, pytester: pytest.Pytester)
| 113 | |
| 114 | class TestRemoteControl: |
| 115 | def test_nofailures(self, pytester: pytest.Pytester) -> None: |
| 116 | item = pytester.getitem("def test_func(): pass\n") |
| 117 | control = RemoteControl(item.config) |
| 118 | control.setup() |
| 119 | topdir, failures = control.runsession()[:2] |
| 120 | assert not failures |
| 121 | |
| 122 | def test_failures_somewhere(self, pytester: pytest.Pytester) -> None: |
| 123 | item = pytester.getitem("def test_func():\n assert 0\n") |
nothing calls this directly
no test coverage detected