From 61370a06c87bda4b5b602ea64b4173eb5b2a0831 Mon Sep 17 00:00:00 2001 From: ErnestaP Date: Tue, 5 Mar 2024 10:22:14 +0100 Subject: [PATCH] remove envs --- Dockerfile | 3 --- tests/unit/test_test_dag.py | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3de0820..87005d4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,5 @@ FROM apache/airflow:2.6.0-python3.10 -ENV AIRFLOW_HOME=/opt/airflow -WORKDIR /opt/airflow - ENV PYTHONBUFFERED=0 ENV AIRFLOW__LOGGING__LOGGING_LEVEL=INFO diff --git a/tests/unit/test_test_dag.py b/tests/unit/test_test_dag.py index cf2abbb..a1d515b 100644 --- a/tests/unit/test_test_dag.py +++ b/tests/unit/test_test_dag.py @@ -1,4 +1,4 @@ -from example_dag.example_dag import fetch, pull +from dags.example_dag.example_dag import fetch, pull def test_test_dag_fetch():