-
-
Notifications
You must be signed in to change notification settings - Fork 341
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
Give Pyright what it wants (alias
attributes everywhere)
#3114
base: main
Are you sure you want to change the base?
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #3114 +/- ##
==========================================
+ Coverage 99.58% 99.71% +0.12%
==========================================
Files 121 122 +1
Lines 18157 23660 +5503
Branches 3272 4037 +765
==========================================
+ Hits 18082 23592 +5510
+ Misses 52 48 -4
+ Partials 23 20 -3
|
this makes me want to write a linter rule, but also feels ridiculous (and idk which flake8 plugin it would fit) to write an attrs+pyright-specific rule. How slow/fast is the test? If it's anything but trivial I could rewrite it as an ast visitor. |
Yeah lint rule would make more sense but unfortunately a lint rule would miss context that's helpful (like whether a class is exported). It takes 1.75 seconds to run locally, though that's with the overhead of starting pytest. |
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.
Alias changes make sense and test looks like it would work pretty well but didn't look into the details super closely, but general idea of it seems solid.
If test is slow, do we need to mark it with @slow
or something?
Maybe? Here's the output at the end of
I don't think it's an appreciable slowdown. Maybe it's a good idea to put EDIT: just the second optimization there changed it to 0.64s locally, so I think it's fine if not marked |
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.
maybe also good to add a comment or two on what this token thing is doing, I find it hard to understand at a glance what the code is doing.
src/trio/_tests/test_exports.py
Outdated
# linters don't like my not using the index, go figure. | ||
for end_offset, token in enumerate(file[start:]): # noqa: B007 |
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.
if you declare end_offset
outside the loop I think the warning goes away (and makes the code easier to read).
codecov wants a pragma: no branch
on the loop to hit 100%
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.
Unfortunately the warning doesn't go away; it does make the code more correct (previously it didn't handle start==len(file)-1
, I think)
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.
I think with the zero-initialization now that should be good
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.
This is fairly gnarly to fix in an AST visitor, I don't see any way of doing it that's not overkill, but I think you could open an issue for ruff and see if they have a decent way of getting at it.
There’s another approach we could use, but it’d might require starting an additional interpreter. Run a script which monkeypatches Unsure if that’d be faster though. We could avoid the new interpreter if the monkeypatch was done before any tests import trio, but that means it affects all tests. Probably not too much of an issue since metadata does nothing, and just wrapping the function should be fairly safe. |
It's not significantly faster:
I think the main improvement would be that it's slightly more reliable. It sounds annoying to implement though. |
@TeamSpen210 do you have any implementation ideas for your idea? I was thinking about it just for the gain in reliability, but I think we would then get a flakey test because we delete and reimport trio to get all the warnings. I guess it's fine if we just patch attrs cause then the reimport will still be using the patched attrs? |
Pushed an implementation using monkeypatching here. Unfortunately a downside I realised is that the monkeypatching code has to be either outside the |
I do like the "monkeypatch, and skip that test if not monkeypatched" plan 🙂 |
@TeamSpen210 @A5rocks I'd really like to get this merged so I can use it; is there anything I can do to help? |
Nope! I've just been pushing off working on some trio stuff for a bit, I'll incorporate better testing strategy soon:tm: (probably just |
Would you like me to make the monkeypatch approach a competing PR, or PR to yours, or do you want to stick with the current approach? |
If you wouldn't mind, you should be able to commit to this PR. |
Committed, didn't want to do big changes to other people's PRs without permission. Though it is easy to revert so probably that's fine. |
Should we move the plugin to the (adjacent to |
That should work, if it's in |
I don't like pyright nor this behavior, but that doesn't mean users should have to care. We can add a test to prevent any sort of regression regarding this, forever.
cc @mikenerone cause this is from Gitter.
also @CoolCat467 I ran into issues with running the
regenerate-files
pre-commit hook and couldn't figure them out after about 15 minutes. It was complaining aboutattrs
not being possible to import but unfortunately there's no way to get it to use thetest-requirements.txt
file. Have you run into this issue regarding it not picking up the virtual environment? (I'm using a seperate git client so that kind of makes sense, but now's the first time I ran into this...)