-
Notifications
You must be signed in to change notification settings - Fork 205
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
TestCase attributes trigger N815 #93
Comments
N815 (mixedCased variable names at class scope) and N816 (mixedCased variable names at global scope) are new error codes in the 0.8.0 release. You can disable them to get the previous pep8-naming behavior. I agree that they're pretty noisy on a code base that uses @5j9, you introduced these new errors. What do you think? |
#43 is somewhat related, too. |
Thanks for the quick fixes 👍 |
With the recent release of
pep-8-naming
I suddenly getN815
warnings for themaxDiff
attribute onunittest.TestCase
s (https://docs.python.org/3/library/unittest.html#unittest.TestCase.maxDiff)I haven't verified this, but I assume other
TestCase
attributes will also trigger this (i.e.failureException
(https://docs.python.org/3/library/unittest.html#unittest.TestCase.failureException),longMessage
(https://docs.python.org/3/library/unittest.html#unittest.TestCase.longMessage))The text was updated successfully, but these errors were encountered: