potiuk commented on code in PR #45131:
URL: https://github.com/apache/airflow/pull/45131#discussion_r1894583956
##########
dev/breeze/src/airflow_breeze/utils/selective_checks.py:
##########
@@ -885,18 +882,20 @@ def _get_providers_test_types_to_run(self,
split_to_individual_providers: bool =
include_docs=False,
)
candidate_test_types: set[str] = set()
- if affected_providers and not isinstance(affected_providers,
AllProvidersSentinel):
+ if isinstance(affected_providers, AllProvidersSentinel):
+ if split_to_individual_providers:
+ for provider in get_available_packages():
+ candidate_test_types.add(f"Providers[{provider}]")
+ else:
Review Comment:
This "else" was missing .
--
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]