This is an automated email from the ASF dual-hosted git repository.

keviny pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


    from 75c60923e0 Prepare provider documentation 2022.05.11 (#23631)
     add 3138604b26 AIP45 Remove dag parsing in airflow run local (#21877)

No new revisions were added by this update.

Summary of changes:
 airflow/cli/cli_parser.py                          |   2 -
 airflow/cli/commands/task_command.py               |   7 +-
 airflow/dag_processing/processor.py                |   2 +-
 airflow/executors/debug_executor.py                |   3 -
 airflow/jobs/backfill_job.py                       |   2 +-
 airflow/jobs/local_task_job.py                     |  73 +--
 airflow/jobs/scheduler_job.py                      |  22 +
 airflow/models/dag.py                              |   9 +
 airflow/models/serialized_dag.py                   |   8 +
 airflow/models/taskinstance.py                     | 142 ++---
 airflow/task/task_runner/base_task_runner.py       |  38 +-
 airflow/task/task_runner/standard_task_runner.py   |  13 +-
 airflow/utils/cli.py                               |  10 +
 tests/cli/commands/test_task_command.py            |  33 +
 tests/conftest.py                                  |  18 +
 tests/dag_processing/test_processor.py             |  20 +-
 tests/dags/test_dagrun_fast_follow.py              |  64 ++
 tests/dags/test_mark_state.py                      | 103 +++
 tests/dags/test_mark_success.py                    |  33 -
 tests/dags/test_on_failure_callback.py             |  31 +-
 tests/jobs/test_backfill_job.py                    |   4 +
 tests/jobs/test_local_task_job.py                  | 703 +++++++--------------
 tests/models/test_taskinstance.py                  | 130 ++--
 tests/task/task_runner/test_base_task_runner.py    |   2 +-
 .../task/task_runner/test_standard_task_runner.py  |  13 +-
 25 files changed, 668 insertions(+), 817 deletions(-)
 create mode 100644 tests/dags/test_dagrun_fast_follow.py
 create mode 100644 tests/dags/test_mark_state.py
 delete mode 100644 tests/dags/test_mark_success.py

Reply via email to