potiuk commented on code in PR #46608:
URL: https://github.com/apache/airflow/pull/46608#discussion_r1956750563
##########
dev/breeze/src/airflow_breeze/utils/run_tests.py:
##########
@@ -138,18 +137,7 @@ def test_paths(test_type: str, backend: str) -> tuple[str,
str, str]:
def get_ignore_switches_for_provider(provider_folders: list[str]) -> list[str]:
args = []
for providers in provider_folders:
- args.extend(
- [
- # TODO(potiuk): remove the old ways once we migrate all
providers to the new structure
- f"--ignore=providers/tests/{providers}",
- f"--ignore=providers/tests/system/{providers}",
- f"--ignore=providers/tests/integration/{providers}",
- # New structure
- f"--ignore=providers/{providers}/tests/",
- f"--ignore=providers/{providers}/tests/system",
- f"--ignore=providers/{providers}/tests/integration",
- ]
- )
+ args.append(f"--ignore=providers/{providers}/tests/")
Review Comment:
We can finally exclude one dir wth all test types, "per provider"
--
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]