pierrejeambrun commented on code in PR #27387:
URL: https://github.com/apache/airflow/pull/27387#discussion_r1010322011
##########
dev/breeze/src/airflow_breeze/utils/selective_checks.py:
##########
@@ -306,7 +306,7 @@ def full_tests_needed(self) -> bool:
def python_versions(self) -> list[str]:
return (
CURRENT_PYTHON_MAJOR_MINOR_VERSIONS
- if self.full_tests_needed
+ if self._run_everything or self.full_tests_needed
Review Comment:
It seems that `_run_everything` already checks for `self.full_tests_needed`.
Is is or condition necessary ?
Same question for `all_python_versions`
--
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]