From 388adf97c904854fcd39eb0114ce145f58381070 Mon Sep 17 00:00:00 2001
From: Christian Boettcher <c.boettcher@fz-juelich.de>
Date: Wed, 25 Jan 2023 10:44:10 +0100
Subject: [PATCH] Delete testdag.py

---
 dags/testdag.py | 21 ---------------------
 1 file changed, 21 deletions(-)
 delete mode 100644 dags/testdag.py

diff --git a/dags/testdag.py b/dags/testdag.py
deleted file mode 100644
index f974f23..0000000
--- a/dags/testdag.py
+++ /dev/null
@@ -1,21 +0,0 @@
-from datetime import timedelta
-
-from airflow import DAG
-from airflow.operators.bash import BashOperator
-from airflow.utils.dates import days_ago
-
-def_args = {
-    'owner': 'airflow',
-    'depends_on_past': False,
-    'email_on_failure': False,
-    'email_on_retry': False,
-    'retries': 1,
-    'retry_delay': timedelta(minutes=5)
-
-}
-
-with DAG('testdag', default_args=def_args, description='simple testing dag', schedule_interval=timedelta(days=1), start_date=days_ago(2)) as dag:
-    t1 = BashOperator(task_id='print_date', bash_command='date')
-    t2 = BashOperator(task_id='do_noting', bash_command='sleep 5')
-
-    t1 >> t2
-- 
GitLab