(self)
| 133 | ] == list(PythonInterpreter.iter_candidates(paths=[test_interpreter1, test_interpreter2])) |
| 134 | |
| 135 | def test_iter_interpreter_none(self): |
| 136 | # type: () -> None |
| 137 | assert [] == list(PythonInterpreter.iter_candidates(paths=[os.devnull])) |
| 138 | |
| 139 | def test_iter_candidates_empty_paths(self, test_interpreter1): |
| 140 | # type: (str) -> None |
nothing calls this directly
no test coverage detected