-
Notifications
You must be signed in to change notification settings - Fork 1
PyLint integration
Dan Mushkevych edited this page Nov 12, 2015
·
6 revisions
launch.py
comes equipped with PyLint - a Python code analysis tool. Its configuration is defined in two files: pylint.rc
specifies analyser configuration, while settings.py
defines modules that PyLint will review during its run. Modules are listed under section testable_modules
, and developer should list his/her module in this section to make them visible to PyLint :
testable_modules = [
'system',
'workers',
]
PyLint is called by launch.py test -p
command.
You can specify an output file with -o parameter:
launch.py test -p -o result.log