Результат прогона линтера
This commit is contained in:
@@ -6,7 +6,6 @@ from pathlib import Path
|
||||
from types import ModuleType
|
||||
from typing import Type
|
||||
|
||||
|
||||
PROJECT_ROOT = Path(__file__).resolve().parents[1]
|
||||
if str(PROJECT_ROOT) not in sys.path:
|
||||
sys.path.append(str(PROJECT_ROOT))
|
||||
|
||||
@@ -14,7 +14,9 @@ def _airflow_available() -> bool:
|
||||
return hasattr(af, "DAG")
|
||||
|
||||
|
||||
pytestmark = pytest.mark.skipif(not _airflow_available(), reason="Airflow is not installed for DAG smoke tests")
|
||||
pytestmark = pytest.mark.skipif(
|
||||
not _airflow_available(), reason="Airflow is not installed for DAG smoke tests"
|
||||
)
|
||||
|
||||
|
||||
def _load_dag(module_name: str):
|
||||
|
||||
Reference in New Issue
Block a user