You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by tu...@apache.org on 2020/06/04 14:20:57 UTC

[airflow] branch master updated (46fee77 -> 533b143)

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

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


    from 46fee77  Use static binary linked docker client in CI image (#9126)
     add 533b143  Add run_type to DagRun (#8227)

No new revisions were added by this update.

Summary of changes:
 UPDATING.md                                        | 37 ++++++++-
 airflow/api/common/experimental/mark_tasks.py      |  4 +-
 airflow/api/common/experimental/trigger_dag.py     | 20 ++---
 airflow/jobs/backfill_job.py                       |  7 +-
 airflow/jobs/base_job.py                           |  2 +-
 airflow/jobs/scheduler_job.py                      |  9 +-
 .../versions/3c20cacc0044_add_dagrun_run_type.py   | 97 ++++++++++++++++++++++
 airflow/models/dag.py                              | 22 ++++-
 airflow/models/dagrun.py                           | 21 +++--
 airflow/operators/dagrun_operator.py               | 12 +--
 airflow/operators/subdag_operator.py               |  3 +-
 airflow/ti_deps/deps/dagrun_id_dep.py              | 10 +--
 airflow/utils/types.py                             | 10 +++
 airflow/www/forms.py                               |  2 +
 airflow/www/views.py                               | 13 ++-
 tests/api/client/test_local_client.py              | 17 ++--
 tests/api/common/experimental/test_delete_dag.py   |  3 +-
 tests/api/common/experimental/test_mark_tasks.py   | 16 ++--
 tests/cli/commands/test_dag_command.py             |  2 +-
 tests/jobs/test_backfill_job.py                    |  4 +-
 tests/jobs/test_scheduler_job.py                   | 18 ++--
 tests/models/test_dag.py                           | 16 +++-
 tests/models/test_dagrun.py                        | 14 ++--
 tests/models/test_skipmixin.py                     |  4 +-
 tests/models/test_taskinstance.py                  |  7 +-
 tests/operators/test_bash.py                       |  6 +-
 tests/operators/test_branch_operator.py            |  5 +-
 tests/operators/test_latest_only_operator.py       | 13 +--
 tests/operators/test_python.py                     | 25 +++---
 tests/operators/test_subdag_operator.py            |  5 +-
 tests/sensors/test_base_sensor.py                  |  3 +-
 tests/sensors/test_python.py                       |  5 +-
 tests/test_core.py                                 |  3 +-
 tests/ti_deps/deps/test_dagrun_id_dep.py           |  5 +-
 tests/www/test_views.py                            | 31 ++++---
 35 files changed, 330 insertions(+), 141 deletions(-)
 create mode 100644 airflow/migrations/versions/3c20cacc0044_add_dagrun_run_type.py