dstandish commented on code in PR #22641:
URL: https://github.com/apache/airflow/pull/22641#discussion_r842854680
##########
tests/jobs/test_scheduler_job.py:
##########
@@ -3812,6 +3812,20 @@ def test_mapped_dag(self, dag_id, session):
dr.refresh_from_db(session)
assert dr.state == DagRunState.SUCCESS
+ @pytest.mark.long_running
+ @pytest.mark.xfail(reason="Taskflow mapped tasks don't take default_args
yet")
+ @pytest.mark.parametrize(
+ "dag_id", ["test_mapped_slas_disabled_classic",
"test_mapped_slas_disabled_taskflow"]
+ )
+ def test_mapped_dag_slas_disabled(self, dag_id, session):
+
+ dag_file = TEST_DAGS_FOLDER / f'{dag_id}.py'
+ self.dagbag.process_file(str(dag_file))
Review Comment:
ok sure yeah was not exactly sure where best to put. will do that.
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]