mirror of
https://github.com/avatao-content/test-tutorial-framework
synced 2024-11-14 06:27:17 +00:00
Silence pylint's unjust accusations
This commit is contained in:
parent
43d63323fa
commit
9eede5f80e
5
.pylintrc
Normal file
5
.pylintrc
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
[TYPECHECK]
|
||||||
|
|
||||||
|
ignored-modules = zmq
|
||||||
|
max-line-length = 150
|
||||||
|
disable = missing-docstring, too-few-public-methods, invalid-name
|
@ -54,7 +54,6 @@ class TestCommands(TerminalCommands):
|
|||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
# pylint: disable=invalid-name
|
|
||||||
ide = IdeEventHandler(key='ide', allowed_directories=[TFWENV.IDE_WD, TFWENV.WEBSERVICE_DIR],
|
ide = IdeEventHandler(key='ide', allowed_directories=[TFWENV.IDE_WD, TFWENV.WEBSERVICE_DIR],
|
||||||
directory=TFWENV.IDE_WD, exclude=['*.pyc'])
|
directory=TFWENV.IDE_WD, exclude=['*.pyc'])
|
||||||
terminado = TerminalEventHandler(key='shell', monitor=BashMonitor(TFWENV.HISTFILE))
|
terminado = TerminalEventHandler(key='shell', monitor=BashMonitor(TFWENV.HISTFILE))
|
||||||
|
@ -11,7 +11,6 @@ LOG = logging.getLogger(__name__)
|
|||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
# pylint: disable=invalid-name
|
|
||||||
FiveStepTestFSM = partial(TestFSM, 5)
|
FiveStepTestFSM = partial(TestFSM, 5)
|
||||||
TFWServer(FiveStepTestFSM).listen(TFWENV.WEB_PORT)
|
TFWServer(FiveStepTestFSM).listen(TFWENV.WEB_PORT)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user