-
Notifications
You must be signed in to change notification settings - Fork 13
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
Update tool versions, add pyupgrade, enable pylint for tests #92
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #92 +/- ##
===========================================
- Coverage 100.00% 96.35% -3.65%
===========================================
Files 4 4
Lines 314 357 +43
===========================================
+ Hits 314 344 +30
- Misses 0 13 +13 ☔ View full report in Codecov by Sentry. |
Makes sense to wait for #91 |
@@ -29,7 +29,7 @@ def test_false(self): | |||
self.assertFalse(DataclassAdapter.is_item(DataClassItem)) | |||
|
|||
try: | |||
import attrs # noqa: F401 | |||
import attrs # noqa: F401 # pylint: disable=unused-import |
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 we could disable this pylint check globally, since flake8 already covers it.
No description provided.