uranusjr commented on code in PR #28724:
URL: https://github.com/apache/airflow/pull/28724#discussion_r1063179968
##########
tests/jobs/test_backfill_job.py:
##########
@@ -147,31 +147,25 @@ def test_dag_run_with_finished_tasks_set_to_success(self,
dag_maker):
assert State.SUCCESS == dag_run.state
- @pytest.mark.xfail(condition=True, reason="This test is flaky")
@pytest.mark.backend("postgres", "mysql")
def test_trigger_controller_dag(self):
Review Comment:
```suggestion
def test_trigger_controller_dag(self, session):
```
you can do this to get rid of the `session = settings.Session()` line.
--
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]