-
-
Notifications
You must be signed in to change notification settings - Fork 31.1k
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
gh-109408: Remove Ubuntu unit tests from Azure Pipelines #109452
Conversation
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.
LG!
Thanks @hugovk for the PR 🌮🎉.. I'm working now to backport this PR to: 3.11, 3.12. |
Sorry, @hugovk, I could not cleanly backport this to |
…nGH-109452) (cherry picked from commit a75daed) Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
GH-109519 is a backport of this pull request to the 3.12 branch. |
GH-109520 is a backport of this pull request to the 3.11 branch. |
…pythonGH-109452) (cherry picked from commit a75daed) Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
Both
ci.yml
andpr.yml
runUbuntu_CI_Tests
which runs.azure-pipelines/posix-steps.yml
.azure-pipelines/posix-steps.yml
does:patchcheck
(PR only)This PR removes the Ubuntu unit test run (4)/report (6), as we're running it on GitHub Actions.
Because
patchcheck
is only run for PRs (pr.yml
), there's no point building Python and then doing nothing forci.yml
, so we can remove the wholeUbuntu_CI_Tests
fromci.yml
.Finally, rename
Ubuntu_CI_Tests
to something more accurate:Ubuntu_Patchcheck
.This speeds up Ubunutu part of
pr.yml
from ~14 to ~4 mins, andci.yml
from ~14 to 0 mins.