-
Notifications
You must be signed in to change notification settings - Fork 286
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
typecheck(cli/_helpers.py) #1667
base: master
Are you sure you want to change the base?
Conversation
Partially fixes - #1635 |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #1667 +/- ##
=======================================
Coverage 84.74% 84.75%
=======================================
Files 153 153
Lines 6465 6467 +2
=======================================
+ Hits 5479 5481 +2
Misses 986 986 ☔ View full report in Codecov by Sentry. |
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.
Great initiative, I love it :)
The type-checker found some additional typings to be made, see the GitHub action here.
To reproduce it locally for easy development, just run make type-check.
Alternatively, just run mypy lightly/cli/_helpers.py
directly.
You might need to install mypy and some typing backages beforehand. For the packages and versions, see
Lines 85 to 87 in cb4f1f6
"mypy==1.4.1", # frozen version to avoid differences between CI and local dev machines | |
"types-python-dateutil", | |
"types-toml", |
Working on the fix to the failed type checks. |
Make sure to use the same version as the one mentioned in Line 85 in ab77543
|
No description provided.