Dev-iL commented on code in PR #61229: URL: https://github.com/apache/airflow/pull/61229#discussion_r3637384154
########## providers/snowflake/tests/conftest.py: ########## @@ -17,3 +17,9 @@ from __future__ import annotations pytest_plugins = "tests_common.pytest_plugin" + +# snowflake-sqlalchemy does not yet support SQLAlchemy 2.1 +try: + from snowflake.sqlalchemy import URL # noqa: F401 +except AttributeError: Review Comment: Done -- 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]
