From 010ed90aeb56ef51215b81562d468b45f74019a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D1=8B=D0=B4=D1=80=D0=B8=D0=BD=20=D0=A1=D0=B5=D1=80?= =?UTF-8?q?=D0=B3=D0=B5=D0=B9?= Date: Fri, 5 Sep 2025 16:57:49 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- testfolder/testhello.py | 9 --------- testpostgre.py | 11 ----------- 2 files changed, 20 deletions(-) delete mode 100644 testfolder/testhello.py delete mode 100644 testpostgre.py diff --git a/testfolder/testhello.py b/testfolder/testhello.py deleted file mode 100644 index 3e934d2..0000000 --- a/testfolder/testhello.py +++ /dev/null @@ -1,9 +0,0 @@ -from airflow import DAG -from airflow.operators.python import PythonOperator -from datetime import datetime - -def hello(): - print("Hello Airflow!") - -with DAG("hello_world_folder", start_date=datetime(2025, 9, 4), schedule_interval="@once") as dag: - t1 = PythonOperator(task_id="hello", python_callable=hello) \ No newline at end of file diff --git a/testpostgre.py b/testpostgre.py deleted file mode 100644 index 8c8b419..0000000 --- a/testpostgre.py +++ /dev/null @@ -1,11 +0,0 @@ -from airflow import DAG -from airflow.operators.dummy import DummyOperator -from datetime import datetime - -with DAG( - dag_id="hello_world_postgre", - start_date=datetime(2025, 1, 1), - schedule_interval="@daily", - catchup=False, -) as dag: - task = DummyOperator(task_id="dummy_task")