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

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


The following commit(s) were added to refs/heads/main by this push:
     new b423869440 Init all Airflow routes when testing API (#27586)
b423869440 is described below

commit b423869440088d46d2313065d4abc558ce5f0cad
Author: Jed Cunningham <[email protected]>
AuthorDate: Wed Nov 9 19:16:44 2022 -0800

    Init all Airflow routes when testing API (#27586)
    
    We should init all of the Airflow routes when testing the API, as we now
    have a code path that expects them.
---
 tests/api_connexion/conftest.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tests/api_connexion/conftest.py b/tests/api_connexion/conftest.py
index 1771834a31..f6599a89d6 100644
--- a/tests/api_connexion/conftest.py
+++ b/tests/api_connexion/conftest.py
@@ -34,6 +34,7 @@ def minimal_app_for_api():
             "init_api_experimental_auth",
             "init_api_connexion",
             "init_airflow_session_interface",
+            "init_appbuilder_views",
         ]
     )
     def factory():

Reply via email to