-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconftest.py
62 lines (43 loc) · 1.38 KB
/
conftest.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
from unittest.mock import patch
from pytest import fixture, skip
from sqlalchemy.ext.asyncio import AsyncSession, create_async_engine
def pytest_configure(config):
config.addinivalue_line(
"markers", "require_sqlmodel: skip test when sqlmodel is not installed."
)
@fixture
def environ(tmp_path):
values = {
"PYTHONASYNCIODEBUG": "1",
"SQLALCHEMY_URL": f"sqlite+aiosqlite:///{tmp_path}/test.db",
}
with patch.dict("os.environ", values=values, clear=True):
yield values
@fixture
async def engine(environ):
engine = create_async_engine(environ["SQLALCHEMY_URL"])
yield engine
await engine.dispose()
@fixture
async def session(engine):
async with engine.connect() as conn:
yield AsyncSession(bind=conn)
@fixture(autouse=True)
def tear_down():
from sqlalchemy.orm import clear_mappers
from fastsqla import Base
yield
Base.metadata.clear()
clear_mappers()
try:
import sqlmodel # noqa
except ImportError:
is_sqlmodel_installed = False
else:
is_sqlmodel_installed = True
@fixture(autouse=True)
def check_sqlmodel(request):
"""Skip test marked with mark.require_sqlmodel if sqlmodel is not installed."""
marker = request.node.get_closest_marker("require_sqlmodel")
if marker and not is_sqlmodel_installed:
skip(f"{request.node.nodeid} requires sqlmodel which is not installed.")