uranusjr commented on a change in pull request #19862:
URL: https://github.com/apache/airflow/pull/19862#discussion_r758452199
##########
File path: tests/jobs/test_backfill_job.py
##########
@@ -797,25 +798,20 @@ def test_backfill_pooled_tasks(self):
ti.refresh_from_db()
assert ti.state == State.SUCCESS
- @pytest.mark.quarantined
- def test_backfill_depends_on_past(self):
- """
- Test that backfill respects ignore_depends_on_past
- """
+ @parameterized.expand([(True,), (False,)])
Review comment:
```suggestion
@pytest.mark.parametrize("ignore_depends_on_past", [True, False])
```
--
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]