dossett commented on a change in pull request #5381: AIRFLOW-4740 make
default_args end_date permissive
URL: https://github.com/apache/airflow/pull/5381#discussion_r292723701
##########
File path: tests/models/test_dag.py
##########
@@ -203,6 +203,12 @@ def test_dag_topological_sort(self):
self.assertEqual(tuple(), dag.topological_sort())
+ def test_dag_naive_start_date_string(self):
+ DAG('DAG', default_args={'start_date': '2019-06-01'})
+
+ def test_dag_naive_start_end_dates_strings(self):
+ DAG('DAG', default_args={'start_date': '2019-06-01', 'end_date':
'2019-06-05'})
Review comment:
Great suggestion @ashb. Test added.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services