Obtain a new instance of the :py:class:`pytest.PytestPluginManager`, with default plugins already loaded. This function can be used by integration with other tools, like hooking into pytest to run tests into an IDE.
()
| 291 | |
| 292 | |
| 293 | def get_plugin_manager() -> "PytestPluginManager": |
| 294 | """Obtain a new instance of the |
| 295 | :py:class:`pytest.PytestPluginManager`, with default plugins |
| 296 | already loaded. |
| 297 | |
| 298 | This function can be used by integration with other tools, like hooking |
| 299 | into pytest to run tests into an IDE. |
| 300 | """ |
| 301 | return get_config().pluginmanager |
| 302 | |
| 303 | |
| 304 | def _prepareconfig( |
nothing calls this directly
no test coverage detected