This is an automated email from the ASF dual-hosted git repository.
eladkal pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
from d0a880d069 Fix tooltip for mapped tasks (#22994)
add 49e336ae03 Replace usage of `DummyOperator` with `EmptyOperator`
(#22974)
No new revisions were added by this update.
Summary of changes:
airflow/example_dags/example_bash_operator.py | 4 +-
.../example_branch_datetime_operator.py | 18 +-
.../example_branch_day_of_week_operator.py | 10 +-
airflow/example_dags/example_branch_labels.py | 16 +-
airflow/example_dags/example_branch_operator.py | 12 +-
.../example_branch_operator_decorator.py | 12 +-
.../example_branch_python_dop_operator_3.py | 14 +-
.../example_external_task_marker_dag.py | 4 +-
airflow/example_dags/example_latest_only.py | 4 +-
.../example_latest_only_with_trigger.py | 10 +-
airflow/example_dags/example_nested_branch_dag.py | 16 +-
.../example_dags/example_short_circuit_operator.py | 10 +-
airflow/example_dags/example_skip_dag.py | 16 +-
airflow/example_dags/example_subdag_operator.py | 8 +-
airflow/example_dags/example_task_group.py | 16 +-
.../example_dags/example_task_group_decorator.py | 10 +-
.../example_time_delta_sensor_async.py | 4 +-
airflow/example_dags/example_xcomargs.py | 4 +-
airflow/example_dags/subdags/subdag.py | 4 +-
airflow/models/dagrun.py | 6 +-
airflow/operators/dummy_operator.py | 18 +-
.../dbt/cloud/example_dags/example_dbt_cloud.py | 10 +-
.../jdbc/example_dags/example_jdbc_queries.py | 8 +-
.../azure/example_dags/example_adf_run_pipeline.py | 10 +-
.../microsoft/winrm/example_dags/example_winrm.py | 8 +-
.../qubole/example_dags/example_qubole.py | 8 +-
airflow/serialization/serialized_objects.py | 2 +-
.../extending/embedding-dags/test_dag.py | 8 +-
tests/api/common/test_delete_dag.py | 4 +-
tests/api_connexion/endpoints/test_dag_endpoint.py | 8 +-
.../endpoints/test_dag_run_endpoint.py | 6 +-
tests/api_connexion/endpoints/test_log_endpoint.py | 6 +-
.../api_connexion/endpoints/test_task_endpoint.py | 24 +--
.../api_connexion/endpoints/test_xcom_endpoint.py | 10 +-
.../schemas/test_task_instance_schema.py | 8 +-
tests/api_connexion/schemas/test_task_schema.py | 14 +-
tests/conftest.py | 14 +-
tests/core/test_core.py | 8 +-
tests/core/test_stats.py | 62 +++----
tests/dag_processing/test_processor.py | 6 +-
tests/dags/test_dag_with_no_tags.py | 4 +-
tests/dags/test_double_trigger.py | 4 +-
tests/dags/test_example_bash_operator.py | 4 +-
tests/dags/test_invalid_cron.py | 4 +-
tests/dags/test_issue_1225.py | 20 +--
tests/dags/test_latest_runs.py | 4 +-
tests/dags/test_miscellaneous.py | 4 +-
tests/dags/test_missing_owner.py | 4 +-
tests/dags/test_on_failure_callback.py | 4 +-
tests/dags/test_on_kill.py | 4 +-
...nly_dummy_tasks.py => test_only_empty_tasks.py} | 16 +-
tests/dags/test_prev_dagrun_dep.py | 8 +-
tests/dags/test_scheduler_dags.py | 8 +-
tests/dags/test_subdag.py | 8 +-
tests/dags/test_with_non_default_owner.py | 4 +-
.../dags_with_system_exit/b_test_scheduler_dags.py | 4 +-
tests/deprecated_classes.py | 6 +-
tests/jobs/test_backfill_job.py | 64 +++----
tests/jobs/test_local_task_job.py | 12 +-
tests/jobs/test_scheduler_job.py | 198 ++++++++++-----------
tests/jobs/test_triggerer_job.py | 4 +-
tests/lineage/test_lineage.py | 16 +-
tests/models/test_cleartasks.py | 30 ++--
tests/models/test_dag.py | 140 +++++++--------
tests/models/test_dagbag.py | 40 ++---
tests/models/test_dagrun.py | 74 ++++----
tests/models/test_pool.py | 14 +-
tests/models/test_skipmixin.py | 12 +-
tests/models/test_taskinstance.py | 76 ++++----
tests/models/test_timestamp.py | 4 +-
tests/models/test_trigger.py | 4 +-
tests/models/test_xcom.py | 6 +-
tests/operators/test_branch_operator.py | 8 +-
tests/operators/test_datetime.py | 6 +-
tests/operators/test_latest_only_operator.py | 12 +-
tests/operators/test_python.py | 14 +-
tests/operators/test_sql.py | 8 +-
tests/operators/test_subdag_operator.py | 12 +-
tests/operators/test_trigger_dagrun.py | 4 +-
tests/operators/test_weekday.py | 8 +-
tests/providers/amazon/aws/hooks/test_sagemaker.py | 2 +-
.../amazon/aws/log/test_cloudwatch_task_handler.py | 4 +-
.../amazon/aws/log/test_s3_task_handler.py | 4 +-
tests/sensors/test_base.py | 4 +-
tests/sensors/test_external_task_sensor.py | 16 +-
tests/sensors/test_smart_sensor_operator.py | 4 +-
tests/serialization/test_dag_serialization.py | 54 +++---
.../deps/test_not_previously_skipped_dep.py | 20 +--
tests/ti_deps/deps/test_trigger_rule_dep.py | 14 +-
tests/utils/test_dag_cycle.py | 52 +++---
tests/utils/test_dot_renderer.py | 16 +-
tests/utils/test_edgemodifier.py | 24 +--
tests/utils/test_task_group.py | 140 +++++++--------
.../test_task_handler_with_custom_formatter.py | 4 +-
tests/www/views/test_views.py | 12 +-
tests/www/views/test_views_blocked.py | 4 +-
96 files changed, 863 insertions(+), 827 deletions(-)
rename tests/dags/{test_only_dummy_tasks.py => test_only_empty_tasks.py} (70%)