vincbeck commented on code in PR #46891:
URL: https://github.com/apache/airflow/pull/46891#discussion_r2208634400


##########
airflow-core/tests/unit/api_fastapi/conftest.py:
##########
@@ -126,6 +126,7 @@ def configure_git_connection_for_dag_bundle(session):
         login="",
     )
     session.add(connection)
+    session.commit()

Review Comment:
   Do you remember why you needed to add this one? I am just curious



##########
airflow-core/tests/unit/api_fastapi/core_api/routes/public/test_plugins.py:
##########
@@ -24,6 +24,13 @@
 
 pytestmark = pytest.mark.db_test
 
+try:
+    import flask_appbuilder  # noqa: F401
+
+    is_fab_available = True
+except ImportError:
+    is_fab_available = False

Review Comment:
   This seems to be unused?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to