mirror of
https://github.com/certbot/certbot.git
synced 2026-06-04 14:26:10 -04:00
add pylint disables to the tests to make pylint happier about the inheritance and abstraction situation
This commit is contained in:
parent
b574bdf145
commit
6575ed955c
1 changed files with 8 additions and 2 deletions
|
|
@ -16,11 +16,17 @@ from certbot.tests import acme_util
|
|||
from certbot_nginx import obj
|
||||
from certbot_nginx.tests import util
|
||||
|
||||
|
||||
class ChallengePerformTest(object):
|
||||
"""Abstract base class."""
|
||||
# pylint: disable=no-member
|
||||
"""Abstract base class. Must have ivars:
|
||||
- chall_doer
|
||||
- achalls
|
||||
- account_key
|
||||
And must also inherit from util.NginxTest.
|
||||
"""
|
||||
|
||||
def tearDown(self):
|
||||
# pylint: disable=missing-docstring
|
||||
shutil.rmtree(self.temp_dir)
|
||||
shutil.rmtree(self.config_dir)
|
||||
shutil.rmtree(self.work_dir)
|
||||
|
|
|
|||
Loading…
Reference in a new issue