kacpermuda commented on code in PR #69212:
URL: https://github.com/apache/airflow/pull/69212#discussion_r3538171494


##########
dev/breeze/src/airflow_breeze/commands/testing_commands.py:
##########
@@ -922,6 +923,173 @@ def task_sdk_integration_tests(
     sys.exit(return_code)
 
 
+def _available_e2e_providers() -> list[str]:
+    return sorted(
+        d.name
+        for d in PROVIDERS_E2E_TESTS_ROOT_PATH.iterdir()

Review Comment:
   Added a safety check:
   ```
       if not PROVIDERS_E2E_TESTS_ROOT_PATH.exists():
           return []
   ```



-- 
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