Skip to content

Commit 43bd985

Browse files
committed
random change
1 parent a38eed8 commit 43bd985

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

projects/fal/tests/integration/conftest.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313

1414

1515
def pytest_collection_modifyitems(items):
16-
for item in items:
16+
for _item in items:
1717
# The hook receives every collected item, not just this directory's.
18-
if _INTEGRATION_DIR not in Path(str(item.fspath)).parents:
18+
if _INTEGRATION_DIR not in Path(str(_item.fspath)).parents:
1919
continue
20-
if item.get_closest_marker("timeout") is None:
21-
item.add_marker(pytest.mark.timeout(DEFAULT_REMOTE_TIMEOUT))
20+
if _item.get_closest_marker("timeout") is None:
21+
_item.add_marker(pytest.mark.timeout(DEFAULT_REMOTE_TIMEOUT))

0 commit comments

Comments
 (0)