mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Add some pylint disables
This commit is contained in:
parent
7de939f6b2
commit
c4712e3b78
1 changed files with 3 additions and 1 deletions
|
@ -7,6 +7,8 @@
|
|||
|
||||
Prepare py.test for our test suite
|
||||
'''
|
||||
# pylint: disable=wrong-import-order,wrong-import-position,3rd-party-local-module-not-gated
|
||||
# pylint: disable=redefined-outer-name,invalid-name
|
||||
|
||||
# Import python libs
|
||||
from __future__ import absolute_import, print_function, unicode_literals
|
||||
|
@ -74,7 +76,7 @@ else:
|
|||
os.environ[str('COVERAGE_PROCESS_START')] = str(COVERAGERC_FILE)
|
||||
|
||||
# Define the pytest plugins we rely on
|
||||
pytest_plugins = ['tempdir', 'helpers_namespace', 'salt-runtests-bridge'] # pylint: disable=invalid-name
|
||||
pytest_plugins = ['tempdir', 'helpers_namespace', 'salt-runtests-bridge']
|
||||
|
||||
# Define where not to collect tests from
|
||||
collect_ignore = ['setup.py']
|
||||
|
|
Loading…
Add table
Reference in a new issue