blob: f3475e199c8344d8576e92a5465e5af5ee1a2e80 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
import pytest
from .lazy_fixture import LazyFixtureWrapper
from .loader import load_lazy_fixtures
from .normalizer import normalize_metafunc_calls
@pytest.hookimpl(tryfirst=True)
def pytest_fixture_setup(fixturedef, request):
val = getattr(request, "param", None)
if val is not None:
request.param = load_lazy_fixtures(val, request)
def pytest_make_parametrize_id(config, val, argname):
if isinstance(val, LazyFixtureWrapper):
return val.name
@pytest.hookimpl(hookwrapper=True)
def pytest_generate_tests(metafunc):
yield
normalize_metafunc_calls(metafunc)
|