From 3f72a22aa607c5d2299e366dc3e3a7111618568e Mon Sep 17 00:00:00 2001 From: ErnestaP Date: Tue, 5 Mar 2024 10:28:21 +0100 Subject: [PATCH] removed dags dir from import --- Dockerfile | 2 +- tests/unit/test_test_dag.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 87005d4..d187cec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM apache/airflow:2.6.0-python3.10 -ENV PYTHONBUFFERED=0 +ENV PYTHONUNBUFFERED=1 ENV AIRFLOW__LOGGING__LOGGING_LEVEL=INFO # install your pip packages diff --git a/tests/unit/test_test_dag.py b/tests/unit/test_test_dag.py index a1d515b..cf2abbb 100644 --- a/tests/unit/test_test_dag.py +++ b/tests/unit/test_test_dag.py @@ -1,4 +1,4 @@ -from dags.example_dag.example_dag import fetch, pull +from example_dag.example_dag import fetch, pull def test_test_dag_fetch():