From 38174bd422bc77879fceee1530eb758221d67d53 Mon Sep 17 00:00:00 2001 From: airflow Date: Sun, 7 Sep 2025 18:27:45 +0400 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20test.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 test.py diff --git a/test.py b/test.py new file mode 100644 index 0000000..d54a4f3 --- /dev/null +++ b/test.py @@ -0,0 +1,14 @@ +from airflow import DAG +from airflow.operators.dummy import DummyOperator +from datetime import datetime + +with DAG( + 'minimal_do_nothing_dag', + start_date=datetime(2023, 1, 1), + schedule_interval=None, + catchup=False, +) as dag: + + do_nothing_task = DummyOperator( + task_id='do_nothing' + ) \ No newline at end of file