diff --git a/.circleci/integration-tests/master_dag.py b/.circleci/integration-tests/master_dag.py index ff3280272..b5e4140f0 100644 --- a/.circleci/integration-tests/master_dag.py +++ b/.circleci/integration-tests/master_dag.py @@ -136,7 +136,7 @@ def prepare_dag_dependency(task_info, execution_time): wait_for_completion=True, reset_dag_run=True, execution_date=execution_time, - allowed_states=["success", "failed", "skipped"], + allowed_states=["success", "failed"], trigger_rule="all_done", ) ) diff --git a/astronomer/providers/core/example_dags/example_external_task.py b/astronomer/providers/core/example_dags/example_external_task.py index a985597ac..6d94751d8 100644 --- a/astronomer/providers/core/example_dags/example_external_task.py +++ b/astronomer/providers/core/example_dags/example_external_task.py @@ -71,7 +71,7 @@ def check_dag_status(**kwargs: Any) -> None: trigger_dag_id="example_external_task_async_waits_for_me", wait_for_completion=True, reset_dag_run=True, - allowed_states=["success", "failed", "skipped"], + allowed_states=["success", "failed"], execution_date="{{execution_date}}", poke_interval=1, )