-
Notifications
You must be signed in to change notification settings - Fork 72
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
Implement ESCDELAY environment value #260
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #260 +/- ##
==========================================
+ Coverage 95.38% 95.42% +0.04%
==========================================
Files 9 9
Lines 1018 1027 +9
Branches 215 216 +1
==========================================
+ Hits 971 980 +9
Misses 43 43
Partials 4 4 ☔ View full report in Codecov by Sentry. |
this should help with dubious test coverage results, i wasn't using pytest fixture right anyway
D301: Use r""" if any backslashes in a docstring Use r"""raw triple double quotes""" if you use any backslashes (\) in your docstrings. Exceptions are backslashes for line-continuation and unicode escape sequences \N... and \u... These are considered intended unescaped content in docstrings.
- fix for 'pylint: disable' - pin docformatter, As it seems the bug that @avylove created may not been addressed, freeze docformatter for now, to prevent failing CI PyCQA/docformatter#264
Thanks @avylove I also went ahead and pinned docformatter, as I'm not sure PyCQA/docformatter#264 will be addressed anytime soon, should allow our other builds to succeed. |
too bad really, I was enjoying being exactly 666 commits ahead of blessings |
Closes #158
Also pins docformatter due to related issue PyCQA/docformatter#264