feat(ingest): fix fspath lint error (#9976)

This commit is contained in:
Harshal Sheth 2024-03-04 17:09:22 -08:00 committed by GitHub
parent d987707cde
commit 9dd0c37830
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -69,7 +69,7 @@ def pytest_collection_modifyitems(
integration_path = root / "tests/integration"
for item in items:
test_path = pathlib.Path(item.fspath)
test_path = item.path
if (
"docker_compose_runner" in item.fixturenames # type: ignore[attr-defined]