PaiGram/tests/integration/conftest.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
568 B
Python
Raw Normal View History

import asyncio
import pytest
import pytest_asyncio
from core.config import config
2023-03-25 03:17:38 +00:00
from core.dependence.database import Database
from core.dependence.redisdb import RedisDB
@pytest_asyncio.fixture(scope="session")
def event_loop():
policy = asyncio.get_event_loop_policy()
res = policy.new_event_loop()
asyncio.set_event_loop(res)
yield res
res.close()
@pytest.fixture(scope="session")
2023-03-25 03:17:38 +00:00
def database():
return Database.from_config(config=config)
@pytest.fixture(scope="session")
def redis():
return RedisDB.from_config(config=config)