mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 00:55:07 +08:00
22 lines
465 B
Python
22 lines
465 B
Python
|
from pathlib import Path
|
||
|
from typing import TYPE_CHECKING, Set
|
||
|
|
||
|
import pytest
|
||
|
|
||
|
if TYPE_CHECKING:
|
||
|
from nonebot.plugin import Plugin
|
||
|
|
||
|
|
||
|
@pytest.fixture
|
||
|
def load_plugin(nonebug_init: None) -> Set["Plugin"]:
|
||
|
import nonebot
|
||
|
|
||
|
return nonebot.load_plugins(str(Path(__file__).parent / "plugins"))
|
||
|
|
||
|
|
||
|
@pytest.fixture
|
||
|
def load_example(nonebug_init: None) -> Set["Plugin"]:
|
||
|
import nonebot
|
||
|
|
||
|
return nonebot.load_plugins(str(Path(__file__).parent / "examples"))
|