uranusjr commented on code in PR #32714:
URL: https://github.com/apache/airflow/pull/32714#discussion_r1271661041
##########
tests/always/test_example_dags.py:
##########
@@ -68,7 +70,7 @@ def example_dags_except_db_exception():
return [
dag_file
for dag_file in example_not_suspended_dags()
- if any(not dag_file.endswith(e) for e in NO_DB_QUERY_EXCEPTION)
+ if not any(dag_file.endswith(e) for e in NO_DB_QUERY_EXCEPTION)
Review Comment:
Fortunately `NO_DB_QUERY_EXCEPTION` has only one entry now so there’s no
functional issues…
##########
tests/always/test_example_dags.py:
##########
@@ -68,7 +70,7 @@ def example_dags_except_db_exception():
return [
dag_file
for dag_file in example_not_suspended_dags()
- if any(not dag_file.endswith(e) for e in NO_DB_QUERY_EXCEPTION)
+ if not any(dag_file.endswith(e) for e in NO_DB_QUERY_EXCEPTION)
Review Comment:
Fortunately `NO_DB_QUERY_EXCEPTION` has only one entry now so there’s no
functional issues…
--
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]