diff options
| author | robot-piglet <[email protected]> | 2024-08-01 09:58:13 +0300 |
|---|---|---|
| committer | robot-piglet <[email protected]> | 2024-08-01 10:06:08 +0300 |
| commit | 226ad6e44ddaecc763a95f179974da04b9c9fa83 (patch) | |
| tree | cc5e80f25011577935b602920306bd185a1bf336 /contrib/python/pytest-lazy-fixtures/pytest_lazy_fixtures/plugin.py | |
| parent | fc4a5bce8457dd4aa05f857e0fc36183245a7fff (diff) | |
Intermediate changes
Diffstat (limited to 'contrib/python/pytest-lazy-fixtures/pytest_lazy_fixtures/plugin.py')
| -rw-r--r-- | contrib/python/pytest-lazy-fixtures/pytest_lazy_fixtures/plugin.py | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/contrib/python/pytest-lazy-fixtures/pytest_lazy_fixtures/plugin.py b/contrib/python/pytest-lazy-fixtures/pytest_lazy_fixtures/plugin.py index de7d75a4f79..f3475e199c8 100644 --- a/contrib/python/pytest-lazy-fixtures/pytest_lazy_fixtures/plugin.py +++ b/contrib/python/pytest-lazy-fixtures/pytest_lazy_fixtures/plugin.py @@ -1,16 +1,10 @@ import pytest -from .lazy_fixture import LazyFixtureWrapper, lf -from .lazy_fixture_callable import lfc +from .lazy_fixture import LazyFixtureWrapper from .loader import load_lazy_fixtures from .normalizer import normalize_metafunc_calls -def pytest_configure(): - pytest.lazy_fixtures = lf - pytest.lazy_fixtures_callable = lfc - - @pytest.hookimpl(tryfirst=True) def pytest_fixture_setup(fixturedef, request): val = getattr(request, "param", None) |
