| 971 | monkeypatch.delenv("PYTEST_DISABLE_PLUGIN_AUTOLOAD", raising=False) |
| 972 | |
| 973 | class DummyEntryPoint: |
| 974 | name = "mytestplugin" |
| 975 | group = "pytest11" |
| 976 | |
| 977 | def load(self): |
| 978 | raise ImportError("Don't hide me!") |
| 979 | |
| 980 | class Distribution: |
| 981 | version = "1.0" |
no outgoing calls