This is an automated email from the ASF dual-hosted git repository.
ephraimanierobi pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git.
from e05ba51 Speed up tests by moving app instantiation to class method
(#14329)
add 31acf95 Add plugins endpoint to the REST API (#14280)
No new revisions were added by this update.
Summary of changes:
.../api_connexion/endpoints/plugin_endpoint.py | 25 +--
airflow/api_connexion/openapi/v1.yaml | 100 ++++++++++-
.../schemas/{xcom_schema.py => plugin_schema.py} | 52 +++---
airflow/cli/commands/plugins_command.py | 27 +--
airflow/plugins_manager.py | 34 ++++
.../endpoints/test_plugin_endpoint.py | 182 +++++++++++++++++++++
tests/api_connexion/schemas/test_plugin_schema.py | 87 ++++++++++
7 files changed, 440 insertions(+), 67 deletions(-)
copy .github/workflows/label_when_reviewed.yml =>
airflow/api_connexion/endpoints/plugin_endpoint.py (50%)
copy airflow/api_connexion/schemas/{xcom_schema.py => plugin_schema.py} (52%)
create mode 100644 tests/api_connexion/endpoints/test_plugin_endpoint.py
create mode 100644 tests/api_connexion/schemas/test_plugin_schema.py