(repo_url: str, proxy="")
| 378 | _mock_missing_requirements(monkeypatch, {"networkx"}) |
| 379 | |
| 380 | async def mock_install(repo_url: str, proxy=""): |
| 381 | assert repo_url == TEST_PLUGIN_REPO |
| 382 | _write_local_test_plugin(plugin_path, repo_url) |
| 383 | _write_requirements(plugin_path) |
| 384 | return str(plugin_path) |
| 385 | |
| 386 | monkeypatch.setattr(plugin_manager_pm.updator, "install", mock_install) |
| 387 | monkeypatch.setattr( |
nothing calls this directly
no test coverage detected