We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab4a2ef commit cfc8ee8Copy full SHA for cfc8ee8
tests/units/vars/test_dep_tracking.py
@@ -272,6 +272,9 @@ async def func_with_get_var_value(self: DependencyTestState):
272
assert tracker.dependencies == expected_deps
273
274
275
+@pytest.mark.skipif(
276
+ sys.version_info < (3, 11), reason="Requires Python 3.11+ for positions"
277
+)
278
def test_get_var_value_with_import_from():
279
"""Test that get_var_value with function-local `from ... import ...` finds correct dependency."""
280
0 commit comments