-
-
Notifications
You must be signed in to change notification settings - Fork 1.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
[Feature] Add filepaths checked to verbose msg #9375
base: main
Are you sure you want to change the base?
Conversation
This comment has been minimized.
This comment has been minimized.
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 it would probably make sense to store this in _stats
. The data is probably already there, we just need to print it.
I do think this is a good change though π
@DanielNoord I've moved the names set to the LinterStats class. Don't know if there is other way but currently the information of modules that the stats class has it's not straightforward readable. e.g. if we run pylint over a directory
|
This comment has been minimized.
This comment has been minimized.
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.
Thanks!
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.
Code looks good. We know only need a changelog entry and update some failing tests.
This comment has been minimized.
This comment has been minimized.
97544ab
to
cde7da3
Compare
This comment has been minimized.
This comment has been minimized.
Signed-off-by: Alvaro Frias Garay <[email protected]>
Signed-off-by: Alvaro Frias Garay <[email protected]>
cde7da3
to
b1f6ab3
Compare
This comment has been minimized.
This comment has been minimized.
I'm working on this, please do not merge. I don't think the verbose output should be generated AT the end but during collection instead. But there's a mess of duplication to deal with. |
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.
See previous comment
Codecov ReportAll modified and coverable lines are covered by tests β
Additional details and impacted files@@ Coverage Diff @@
## main #9375 +/- ##
==========================================
+ Coverage 95.81% 95.83% +0.01%
==========================================
Files 173 174 +1
Lines 18825 18890 +65
==========================================
+ Hits 18038 18104 +66
+ Misses 787 786 -1
|
π€ According to the primer, this change has no effect on the checked open source code. π€π This comment was generated for commit f6d7a21 |
Type of Changes
Description
Update the verbose output of the linter by including the filenames of the files that have been checked. Previously, the verbose output only included the count of checked and skipped files. With this change, users can now see exactly which files have been processed by the linter.
Closes #9357