1 parent a38eed8 commit 43bd985Copy full SHA for 43bd985
1 file changed
projects/fal/tests/integration/conftest.py
@@ -13,9 +13,9 @@
13
14
15
def pytest_collection_modifyitems(items):
16
- for item in items:
+ for _item in items:
17
# The hook receives every collected item, not just this directory's.
18
- if _INTEGRATION_DIR not in Path(str(item.fspath)).parents:
+ if _INTEGRATION_DIR not in Path(str(_item.fspath)).parents:
19
continue
20
- if item.get_closest_marker("timeout") is None:
21
- item.add_marker(pytest.mark.timeout(DEFAULT_REMOTE_TIMEOUT))
+ if _item.get_closest_marker("timeout") is None:
+ _item.add_marker(pytest.mark.timeout(DEFAULT_REMOTE_TIMEOUT))
0 commit comments