This is an automated email from the ASF dual-hosted git repository.
kaxilnaik pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git.
from d6ce8c8 Add update mask to patch dag endpoint (#10535)
add 7c0d6ab Enable Black on Connexion API folders (#10545)
No new revisions were added by this update.
Summary of changes:
.flake8 | 2 +-
.pre-commit-config.yaml | 8 +-
airflow/api_connexion/endpoints/config_endpoint.py | 12 +-
.../api_connexion/endpoints/connection_endpoint.py | 14 +-
airflow/api_connexion/endpoints/dag_endpoint.py | 9 +-
.../api_connexion/endpoints/dag_run_endpoint.py | 105 ++++++----
.../api_connexion/endpoints/event_log_endpoint.py | 13 +-
airflow/api_connexion/endpoints/health_endpoint.py | 5 +-
.../endpoints/import_error_endpoint.py | 8 +-
airflow/api_connexion/endpoints/log_endpoint.py | 12 +-
airflow/api_connexion/endpoints/pool_endpoint.py | 8 +-
.../api_connexion/endpoints/variable_endpoint.py | 9 +-
.../api_connexion/endpoints/version_endpoint.py | 1 +
airflow/api_connexion/endpoints/xcom_endpoint.py | 25 +--
airflow/api_connexion/exceptions.py | 11 +-
airflow/api_connexion/parameters.py | 4 +-
airflow/api_connexion/schemas/common_schema.py | 13 +-
airflow/api_connexion/schemas/config_schema.py | 6 +
airflow/api_connexion/schemas/connection_schema.py | 3 +
airflow/api_connexion/schemas/dag_run_schema.py | 2 +
airflow/api_connexion/schemas/dag_schema.py | 2 +
airflow/api_connexion/schemas/dag_source_schema.py | 1 +
airflow/api_connexion/schemas/enum_schemas.py | 5 +-
airflow/api_connexion/schemas/event_log_schema.py | 2 +
airflow/api_connexion/schemas/health_schema.py | 2 +
airflow/api_connexion/schemas/log_schema.py | 1 +
airflow/api_connexion/schemas/pool_schema.py | 1 +
airflow/api_connexion/schemas/task_schema.py | 9 +-
airflow/api_connexion/schemas/variable_schema.py | 2 +
airflow/api_connexion/schemas/version_schema.py | 1 +
airflow/api_connexion/schemas/xcom_schema.py | 3 +
airflow/api_connexion/security.py | 1 +
pyproject.toml | 4 +
setup.cfg | 2 +
.../endpoints/test_config_endpoint.py | 42 ++--
.../endpoints/test_connection_endpoint.py | 219 +++++++--------------
tests/api_connexion/endpoints/test_dag_endpoint.py | 89 +++------
.../endpoints/test_dag_run_endpoint.py | 157 ++++++---------
.../endpoints/test_dag_source_endpoint.py | 52 ++---
.../endpoints/test_event_log_endpoint.py | 81 +++-----
.../endpoints/test_extra_link_endpoint.py | 10 +-
.../endpoints/test_health_endpoint.py | 4 +-
.../endpoints/test_import_error_endpoint.py | 19 +-
tests/api_connexion/endpoints/test_log_endpoint.py | 75 +++----
.../api_connexion/endpoints/test_pool_endpoint.py | 83 ++------
.../api_connexion/endpoints/test_task_endpoint.py | 18 +-
.../endpoints/test_task_instance_endpoint.py | 6 +-
.../endpoints/test_variable_endpoint.py | 127 ++++--------
.../endpoints/test_version_endpoint.py | 8 +-
.../api_connexion/endpoints/test_xcom_endpoint.py | 127 +++++-------
tests/api_connexion/schemas/test_common_schema.py | 16 +-
tests/api_connexion/schemas/test_config_schema.py | 21 +-
.../schemas/test_connection_schema.py | 67 +++----
tests/api_connexion/schemas/test_dag_run_schema.py | 19 +-
tests/api_connexion/schemas/test_dag_schema.py | 7 +-
tests/api_connexion/schemas/test_error_schema.py | 4 +-
.../api_connexion/schemas/test_event_log_schema.py | 48 ++---
tests/api_connexion/schemas/test_health_schema.py | 5 +-
tests/api_connexion/schemas/test_task_schema.py | 9 +-
tests/api_connexion/schemas/test_version_schema.py | 8 +-
tests/api_connexion/schemas/test_xcom_schema.py | 28 ++-
tests/api_connexion/test_parameters.py | 3 -
62 files changed, 641 insertions(+), 1017 deletions(-)
create mode 100644 pyproject.toml