⬆️ upgrade dependencies

This commit is contained in:
yanyongyu
2021-12-22 16:53:55 +08:00
parent 9b2fa46921
commit fecdb5367a
11 changed files with 417 additions and 508 deletions

11
tests/test_driver.py Normal file
View File

@ -0,0 +1,11 @@
import pytest
@pytest.mark.asyncio
@pytest.mark.parametrize(
"nonebug_init",
[{"driver": "nonebot.drivers.fastapi"}],
indirect=True,
)
async def test_driver(nonebug_init):
...