ahidalgob commented on code in PR #32714:
URL: https://github.com/apache/airflow/pull/32714#discussion_r1274652544


##########
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:
   Correct, while understanding these failing tests, I added 
`example_redis_publish.py` for a moment to `NO_DB_QUERY_EXCEPTION` and spotted 
this bug, but for one element it (luckily(?)) works the same.



-- 
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]

Reply via email to