| 216 | ) |
| 217 | |
| 218 | class ErrorEP: |
| 219 | @property |
| 220 | def name(self): |
| 221 | return "foo" |
| 222 | |
| 223 | def load(self): |
| 224 | raise ImportError("Entrypoint could not be imported") |
| 225 | |
| 226 | with pytest.warns(UserWarning, match="must be instances of"): |
| 227 | _register_command_ep(dummy_cli, bad_ep) |
no outgoing calls