1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-01-18 12:06:08 +00:00

wa: Pylint Fixes for Travis

Pylint has trouble using imports from the distutils module in
virtualenvs so we need to explicitly ignore these imports.
This commit is contained in:
Marc Bonnici 2018-07-10 10:34:22 +01:00 committed by setrofim
parent e8b0d42758
commit 791d9496a7
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ import shutil
import string
import getpass
from collections import OrderedDict
from distutils.dir_util import copy_tree
from distutils.dir_util import copy_tree # pylint: disable=no-name-in-module, import-error
from wa import ComplexCommand, SubCommand, pluginloader, settings
from wa.framework.target.descriptor import list_target_descriptions

View File

@ -39,7 +39,7 @@ else:
from io import BytesIO as StringIO
# pylint: disable=wrong-import-position,unused-import
from itertools import chain, cycle
from distutils.spawn import find_executable
from distutils.spawn import find_executable # pylint: disable=no-name-in-module, import-error
import yaml
from dateutil import tz