👷 fix python ci cache path error (#1012)

* 👷 fix python ci cache path error

* 🐛 fix path error

* ✏️ fix typo
This commit is contained in:
Ju4tCode
2022-05-27 11:25:51 +08:00
committed by GitHub
parent 6cfa21b15c
commit ae21bfdd0e
2 changed files with 11 additions and 3 deletions

View File

@ -22,7 +22,10 @@ async def test_load_plugin(app: App, load_plugin: Set["Plugin"]):
assert "plugins.export" in sys.modules
# check sub plugin
plugin = nonebot.get_plugin("nested_subplugin")
assert plugin
assert "plugins.nested.plugins.nested_subplugin" in sys.modules
assert plugin.parent_plugin == nonebot.get_plugin("nested")
# check load again
with pytest.raises(RuntimeError):