Greetlist commented on pull request #19640:
URL: https://github.com/apache/airflow/pull/19640#issuecomment-984418595


   There are some failing checks which caused by AssertionError.
   tests/jobs/test_scheduler_job.py
   ```
   TestSchedulerJob::test_max_active_runs_creation_phasing():
       """
       Test that when creating runs once max_active_runs is reached that the 
runs come in the right order
       without gaps
       """
   
       ...
       ...
   
       expected_execution_dates = [datetime.datetime(2016, 1, d, 
tzinfo=timezone.utc) for d in range(1, 6)]
       dagrun_execution_dates = [
           dr.execution_date for dr in 
session.query(DagRun).order_by(DagRun.execution_date).all()
       ]
       assert dagrun_execution_dates == expected_execution_dates   
#AssertionError
   ```
   I check the error info, is the **dagrun_execution_dates** list missing some 
elements?I have no idea what goes wrong here.
   
   


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