-
-
Notifications
You must be signed in to change notification settings - Fork 275
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
Test on PyPy 3.10 #2222
Test on PyPy 3.10 #2222
Conversation
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## main #2222 +/- ##
==========================================
+ Coverage 92.80% 92.82% +0.02%
==========================================
Files 94 94
Lines 10840 10836 -4
==========================================
- Hits 10060 10059 -1
+ Misses 780 777 -3
Flags with carried forward coverage won't be shown. Click here to find out more.
|
Co-authored-by: DaniΓ«l van Noord <13665637+DanielNoord@users.noreply.github.com>
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-maintenance/2.15.x maintenance/2.15.x
# Navigate to the new working tree
cd .worktrees/backport-maintenance/2.15.x
# Create a new branch
git switch --create backport-2222-to-maintenance/2.15.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 efb34f2b84c9f019ffceacef3448d8351563b6a2
# Push it to GitHub
git push --set-upstream origin backport-2222-to-maintenance/2.15.x
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-maintenance/2.15.x Then, create a pull request where the |
@DanielNoord I was able to resolve the underlying issue with PyPy 3.9 by deleting the cached image from each project's Actions environment. So I'll avoid backporting this or doing the same in pylint. Still, I think it's okay to just test on lowest and highest in astroid for now. |
Type of Changes
Description
CI is failing on main and all PRs because
pytest
can't run on the newest PyPy 3.9 image. When the image came out, 3.10 also became available for the first time.Let's just run on 3.10 to unblock CI. Two PyPy versions is fine?