| 1536 | monkeypatch.delenv("PYTEST_DISABLE_PLUGIN_AUTOLOAD", raising=False) |
| 1537 | |
| 1538 | class DummyEntryPoint: |
| 1539 | name = "mytestplugin" |
| 1540 | group = "pytest11" |
| 1541 | |
| 1542 | def load(self): |
| 1543 | raise ImportError("Don't hide me!") |
| 1544 | |
| 1545 | class Distribution: |
| 1546 | version = "1.0" |
no outgoing calls