don't care about unnecessary-pass, do care about invalid names
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Jens Timmerman 2020-11-08 15:35:15 +01:00
parent c4ae189152
commit 3af9a549b3
2 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ load-plugins=pylint_django
max-line-length=120
[MESSAGES CONTROL]
disable=missing-docstring,invalid-name
disable=missing-docstring,unnecessary-pass
[DESIGN]
max-parents=13

View File

@ -20,6 +20,6 @@ class InterFaceTestCase(TestCase):
"""Simple test case for the web interface"""
def test_consume_view_exists(self):
c = Client()
response = c.get('/consume/')
client = Client()
response = client.get('/consume/')
self.assertTrue("TODO" not in response)