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.
()
| 374 | |
| 375 | |
| 376 | def get_plugin_manager() -> PytestPluginManager: |
| 377 | """Obtain a new instance of the |
| 378 | :py:class:`pytest.PytestPluginManager`, with default plugins |
| 379 | already loaded. |
| 380 | |
| 381 | This function can be used by integration with other tools, like hooking |
| 382 | into pytest to run tests into an IDE. |
| 383 | """ |
| 384 | return get_config().pluginmanager |
| 385 | |
| 386 | |
| 387 | def _prepareconfig( |
nothing calls this directly
no test coverage detected