diff options
| author | robot-piglet <[email protected]> | 2025-06-09 08:27:58 +0300 |
|---|---|---|
| committer | robot-piglet <[email protected]> | 2025-06-09 08:38:51 +0300 |
| commit | 74b634474898d316330aa9e5d49a248da68f0f35 (patch) | |
| tree | 98fafb2687f7e5fdd94f3b3459ade02fa869878c /contrib/python | |
| parent | 1818eaa784ca432d63d32ccf5d0d36612e40fe34 (diff) | |
Intermediate changes
commit_hash:f135fb78945f557de9bee0e653714e873744e099
Diffstat (limited to 'contrib/python')
3 files changed, 3 insertions, 3 deletions
diff --git a/contrib/python/pytest-lazy-fixtures/.dist-info/METADATA b/contrib/python/pytest-lazy-fixtures/.dist-info/METADATA index 1b4fad41ee3..09a569a800c 100644 --- a/contrib/python/pytest-lazy-fixtures/.dist-info/METADATA +++ b/contrib/python/pytest-lazy-fixtures/.dist-info/METADATA @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: pytest-lazy-fixtures -Version: 1.1.2 +Version: 1.1.3 Summary: Allows you to use fixtures in @pytest.mark.parametrize. Home-page: https://github.com/dev-petrov/pytest-lazy-fixtures License: MIT diff --git a/contrib/python/pytest-lazy-fixtures/pytest_lazy_fixtures/normalizer.py b/contrib/python/pytest-lazy-fixtures/pytest_lazy_fixtures/normalizer.py index db4cfa8b00b..45a1243d52b 100644 --- a/contrib/python/pytest-lazy-fixtures/pytest_lazy_fixtures/normalizer.py +++ b/contrib/python/pytest-lazy-fixtures/pytest_lazy_fixtures/normalizer.py @@ -72,7 +72,7 @@ def _normalize_call(callspec, metafunc, used_keys): fixturenames_closure, arg2fixturedefs = _get_fixturenames_closure_and_arg2fixturedefs(fm, metafunc, value) if fixturenames_closure and arg2fixturedefs: - extra_fixturenames = [fname for fname in fixturenames_closure if fname not in params] + extra_fixturenames = [fname for fname in set(fixturenames_closure) if fname not in params] newmetafunc = _copy_metafunc(metafunc) newmetafunc.fixturenames = extra_fixturenames diff --git a/contrib/python/pytest-lazy-fixtures/ya.make b/contrib/python/pytest-lazy-fixtures/ya.make index fd0a21e535a..1ccca305eb0 100644 --- a/contrib/python/pytest-lazy-fixtures/ya.make +++ b/contrib/python/pytest-lazy-fixtures/ya.make @@ -2,7 +2,7 @@ PY3_LIBRARY() -VERSION(1.1.2) +VERSION(1.1.3) LICENSE(MIT) |
