1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-07-09 00:23:35 +01: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
wa
commands
utils

@ -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