-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Increase timeouts #5755
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
Increase timeouts #5755
Conversation
Pull Request Test Coverage Report for Build 1774944226
💛 - Coveralls |
Pierre-Sassoulas
left a comment
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.
Yeah we have a limited number of runner, we need a compromise for when we push a lot of commits (generally just before release time) but I think if there's too much commit it's actually a good thing to time out some pipeline.
@Pierre-Sassoulas For these case I would suggest looking into the This is what Home-Assistant does. It should work for us too if you like to add it. |
|
Personally I really like that we keep running CI over all commits as its easier to backtrack and find a fault commit. But I can see why in the interest of decreasing the number of runners being used we want to add |
Generally, me too. In some cases it can make sense though. Especially for longer running tasks, like the primer tests. I would leave that up to you two to decide. |
|
For primer |
Didn't know that. In that case, not sure it's worth it for the regular CI tests. |
|
You have yourself to thank for that > #5359 (comment) |
|
🤣 |
|
Haha, Marc is doing so much for pylint that even himself can't keep track. I think we had one occurrence of the pipeline taking longer than 6 hours (well we also had a lot of that when we were doing inefficient primer with duplicate-code checks...) and one occurrence where a MR was merged with green tests and then failed on main because another incompatible one was also merged at the same time. But we did not have to check every commits because we knew what was causing the problem as we don't merge that much MR daily. So I think we can save some runner time and some time waiting for job to finish before merging without much drawbacks. |
This reverts commit ade493a.
* Revert "Increase timeouts (#5755)" This reverts commit ade493a. Co-authored-by: Pierre Sassoulas <[email protected]>
Description
Followup to #5752. After merging the first one, I noticed timeout issues on my personal fork.
PyCQA/pylintseems to be fine. Maybe it's related to the number of concurrent runners available?Anyway, I increased the timeouts so that they don't trigger accidentally anymore.