This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to tag nightly-master
in repository https://gitbox.apache.org/repos/asf/airflow.git.
*** WARNING: tag nightly-master was modified! ***
from 9ba8b31 (commit)
to 561e459 (commit)
from 9ba8b31 Fix RTD docs build (#12373)
add 823b3aa Reject 'connections add' CLI request if URI provided is
invalid (#12370)
add 39ea872 Check for TaskGroup in _PythonDecoratedOperator (#12312)
add cbd6daf All kubernetes tests use the same host python version (#12374)
add cfa4ecf Add DataflowJobStatusSensor and support non-blocking
execution of jobs (#11726)
add 561e459 Proper exit status for failed CLI requests (#12375)
No new revisions were added by this update.
Summary of changes:
.github/workflows/ci.yml | 16 +-
TESTING.rst | 5 +-
airflow/cli/commands/connection_command.py | 37 ++--
airflow/cli/commands/variable_command.py | 4 +-
airflow/operators/python.py | 17 +-
.../google/cloud/example_dags/example_dataflow.py | 34 ++++
airflow/providers/google/cloud/hooks/dataflow.py | 80 +++++++--
.../providers/google/cloud/operators/dataflow.py | 155 +++++++++++++++-
...oud_storage_transfer_service.py => dataflow.py} | 94 +++++-----
docs/concepts.rst | 10 ++
scripts/ci/kubernetes/ci_run_kubernetes_tests.sh | 13 +-
tests/cli/commands/test_connection_command.py | 26 +--
tests/cli/commands/test_variable_command.py | 3 +-
tests/operators/test_python.py | 18 ++
.../providers/google/cloud/hooks/test_dataflow.py | 199 +++++++++++++--------
.../google/cloud/operators/test_dataflow_system.py | 4 +
.../google/cloud/operators/test_mlengine_utils.py | 1 +
.../google/cloud/sensors/test_dataflow.py | 100 +++++++++++
18 files changed, 636 insertions(+), 180 deletions(-)
copy airflow/providers/google/cloud/sensors/{cloud_storage_transfer_service.py
=> dataflow.py} (50%)
create mode 100644 tests/providers/google/cloud/sensors/test_dataflow.py