Return whether a plugin with the given name is registered.
(self, name: str)
| 473 | return plugin |
| 474 | |
| 475 | def hasplugin(self, name: str) -> bool: |
| 476 | """Return whether a plugin with the given name is registered.""" |
| 477 | return bool(self.get_plugin(name)) |
| 478 | |
| 479 | def pytest_configure(self, config: "Config") -> None: |
| 480 | """:meta private:""" |
no outgoing calls