From fba7059e9ba297ec6031df7f5b0f0eea95ae959a Mon Sep 17 00:00:00 2001 From: Jarek Potiuk Date: Mon, 27 Jan 2025 11:07:26 +0100 Subject: [PATCH] Ignore Qdrant static checks issue with sequence of imports (#46119) This is needed - because we need to raise SkipError if qdrant_client is not installed. --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 29625084126cc..4d0be9f65ee51 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -382,6 +382,9 @@ testing = ["dev", "providers.tests", "task_sdk.tests", "tests_common", "tests"] "airflow/api/auth/backend/kerberos_auth.py" = ["E402"] "airflow/security/kerberos.py" = ["E402"] "airflow/security/utils.py" = ["E402"] +"providers/qdrant/tests/provider_tests/qdrant/hooks/test_qdrant.py" = ["E402"] +"providers/qdrant/tests/provider_tests/qdrant/operators/test_qdrant.py" = ["E402"] + # All the modules which do not follow B028 yet: https://docs.astral.sh/ruff/rules/no-explicit-stacklevel/ "helm_tests/airflow_aux/test_basic_helm_chart.py" = ["B028"]