-
Notifications
You must be signed in to change notification settings - Fork 14.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix test in PR 12663 #12667
Fix test in PR 12663 #12667
Conversation
Feel free to drop this PR if any other better way should be favored. |
The PR needs to run all tests because it modifies core of Airflow! Please rebase it to latest master or ask committer to re-run it! |
Force-pushed (without further change) to trigger full test. Just be on the safe side ;-) |
The order of the two TI keys in test_process_task_instances_depends_on_past() is not guaranteed, in such a case, directly assert two lists (both with two elements) will cause 'random' failure This PR addresses this issue. Co-authored-by: Kaxil Naik <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh yeah!
Three failures were observed, all are I believe you guys can help better judge given you are following up on Thanks! |
Yup, that's fine. Will have to fix it separately, I think that is related to Py2.7 / Py3.5 |
The order of the two TI keys in test_process_task_instances_depends_on_past() is not guaranteed, in such a case, directly assert two lists (both with two elements) will cause 'random' failure This PR addresses this issue. Co-authored-by: Kaxil Naik <[email protected]> Co-authored-by: Kaxil Naik <[email protected]>
The order of the two TI keys in test_process_task_instances_depends_on_past() is not guaranteed, in such a case, directly assert two lists (both with two elements) will cause 'random' failure This PR addresses this issue. Co-authored-by: Kaxil Naik <[email protected]> Co-authored-by: Kaxil Naik <[email protected]>
The order of the two TI keys in
test_process_task_instances_depends_on_past()
(#12663) is not guaranteed,in such a case, directly assert two lists (both with two elements) will cause 'random' failure
This PR addresses this issue.
^ Add meaningful description above
Read the Pull Request Guidelines for more information.
In case of fundamental code change, Airflow Improvement Proposal (AIP) is needed.
In case of a new dependency, check compliance with the ASF 3rd Party License Policy.
In case of backwards incompatible changes please leave a note in UPDATING.md.