How does autoload of plugins work? #11615
-
Hello, Any idea why so? And can somebody explain how far the 'autoload' of plugins goes? Does it actually load every hook in the plugin or only registers it in PyTest? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Pytest instructs pluggy to load and register all plugins declared by a entry point Entry points are managed in the package metadata, which is why a install/editable install is necessary |
Beta Was this translation helpful? Give feedback.
Pytest instructs pluggy to load and register all plugins declared by a entry point
Entry points are managed in the package metadata, which is why a install/editable install is necessary