uranusjr commented on code in PR #32714:
URL: https://github.com/apache/airflow/pull/32714#discussion_r1271659881
##########
tests/always/test_example_dags.py:
##########
@@ -54,7 +54,9 @@ def example_not_suspended_dags():
suspended_providers_folders = get_suspended_providers_folders()
possible_prefixes = ["airflow/providers/", "tests/system/providers/"]
suspended_providers_folders = [
- f"{prefix}{provider}" for prefix in possible_prefixes for provider in
suspended_providers_folders
+ f"{AIRFLOW_SOURCES_ROOT.as_posix()}/{prefix}{provider}"
Review Comment:
```suggestion
AIRFLOW_SOURCES_ROOT.joinpath(prefix, provider).as_posix()
```
--
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]