summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrobot-piglet <[email protected]>2025-08-01 09:36:14 +0300
committerrobot-piglet <[email protected]>2025-08-01 09:49:11 +0300
commit1f15845df4a58f3682bc9f6c39b6a8fb62641d36 (patch)
treee358af4dbf5d8b46035ef577aa0c0e340e34c9fc
parenta2a86b907d9b84fc8028dc3afea623af23226b81 (diff)
Intermediate changes
commit_hash:d32976f3f7c5c71a3b6f2727d0f07b2845cffd5b
-rw-r--r--contrib/python/pytest-lazy-fixtures/.dist-info/METADATA2
-rw-r--r--contrib/python/pytest-lazy-fixtures/pytest_lazy_fixtures/utils.py4
-rw-r--r--contrib/python/pytest-lazy-fixtures/ya.make2
3 files changed, 4 insertions, 4 deletions
diff --git a/contrib/python/pytest-lazy-fixtures/.dist-info/METADATA b/contrib/python/pytest-lazy-fixtures/.dist-info/METADATA
index 5186092087b..6cfba29a0d3 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.4
Name: pytest-lazy-fixtures
-Version: 1.3.1
+Version: 1.3.2
Summary: Allows you to use fixtures in @pytest.mark.parametrize.
Project-URL: Homepage, https://github.com/dev-petrov/pytest-lazy-fixtures
Project-URL: Repository, https://github.com/dev-petrov/pytest-lazy-fixtures
diff --git a/contrib/python/pytest-lazy-fixtures/pytest_lazy_fixtures/utils.py b/contrib/python/pytest-lazy-fixtures/pytest_lazy_fixtures/utils.py
index 0046d31d117..4ccad9e1057 100644
--- a/contrib/python/pytest-lazy-fixtures/pytest_lazy_fixtures/utils.py
+++ b/contrib/python/pytest-lazy-fixtures/pytest_lazy_fixtures/utils.py
@@ -39,14 +39,14 @@ def get_fixturenames_closure_and_arg2fixturedefs(fm, parent_node, value) -> tupl
)
extra_fixturenames_func, arg2fixturedefs_func = [], {}
if value._func is None:
- extra_fixturenames_func, arg2fixturedefs_func = _getfixtureclosure(fm, parent_node, value.name)
+ extra_fixturenames_func, arg2fixturedefs_func = _getfixtureclosure(fm, parent_node, value.fixture_name)
return [*extra_fixturenames_args, *extra_fixturenames_kwargs, *extra_fixturenames_func], {
**arg2fixturedefs_args,
**arg2fixturedefs_kwargs,
**arg2fixturedefs_func,
}
if isinstance(value, LazyFixtureWrapper):
- return _getfixtureclosure(fm, parent_node, value.name)
+ return _getfixtureclosure(fm, parent_node, value.fixture_name)
extra_fixturenames, arg2fixturedefs = [], {}
# we need to check exact type
if type(value) is dict:
diff --git a/contrib/python/pytest-lazy-fixtures/ya.make b/contrib/python/pytest-lazy-fixtures/ya.make
index bba355ab0f1..27f7e8fd6c1 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.3.1)
+VERSION(1.3.2)
LICENSE(MIT)