hwang-cadent commented on PR #56973: URL: https://github.com/apache/airflow/pull/56973#issuecomment-3749689712
> Test is failing: > > ``` > FAILED providers/microsoft/azure/tests/unit/microsoft/azure/triggers/test_wasb.py::TestWasbBlobSensorTrigger::test_success - AssertionError: assert False is True > + where False = <built-in method done of _asyncio.Task object at 0x7f1953a8b920>() > + where <built-in method done of _asyncio.Task object at 0x7f1953a8b920> = <Task pending name='Task-4993' coro=<<async_generator_asend without __name__>()> wait_for=<Future pending cb=[shield.<locals>._outer_done_callback() at /usr/python/lib/python3.10/asyncio/tasks.py:864, Task.task_wakeup()]>>.done > ============================================================ 1 failed, 8387 passed, 168 skipped, 1 xfailed, 2 warnings in 1313.20s (0:21:53) ============================================================= > ``` This failure is in the Azure provider tests and is unrelated to the TriggerDagRunOperator changes. The test test_success in TestWasbBlobSensorTrigger is an async test that checks if a task completes within 0.5 seconds. The failure suggests a timing issue where the task hasn't finished in that window. This looks like a flaky test, likely due to: System load affecting async execution timing The 0.5-second sleep not being sufficient in some environments Async event loop timing variations Our changes don't touch the Azure provider or async trigger code, so this is likely pre-existing. -- 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]
