-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathconftest.py
49 lines (32 loc) · 1.33 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
import pytest
from tests_helpers import ByTrailSelector, ModelSpecSchema, cond_list, parametrize_model_spec
from adaptix import DebugTrail
from adaptix._internal.feature_requirement import HAS_ATTRS_PKG, HAS_PY_312, HAS_PYDANTIC_PKG, HAS_SQLALCHEMY_PKG
@pytest.fixture(params=[False, True], ids=lambda x: f"strict_coercion={x}")
def strict_coercion(request):
return request.param
@pytest.fixture(params=[DebugTrail.DISABLE, DebugTrail.FIRST, DebugTrail.ALL])
def debug_trail(request):
return request.param
@pytest.fixture
def trail_select(debug_trail):
return ByTrailSelector(debug_trail)
@pytest.fixture
def model_spec() -> ModelSpecSchema:
...
@pytest.fixture
def src_model_spec() -> ModelSpecSchema:
...
@pytest.fixture
def dst_model_spec() -> ModelSpecSchema:
...
def pytest_generate_tests(metafunc):
parametrize_model_spec("model_spec", metafunc)
parametrize_model_spec("src_model_spec", metafunc)
parametrize_model_spec("dst_model_spec", metafunc)
collect_ignore_glob = [
*cond_list(not HAS_PY_312, ["*_312.py"]),
*cond_list(not HAS_ATTRS_PKG, ["*_attrs.py", "*_attrs_*.py", "**/attrs/**"]),
*cond_list(not HAS_PYDANTIC_PKG, ["*_pydantic.py", "*_pydantic_*.py", "**/pydantic/**"]),
*cond_list(not HAS_SQLALCHEMY_PKG, ["*_sqlalchemy.py", "*_sqlalchemy_*.py", "**/sqlalchemy/**"]),
]