[autotest] Disable 'F' in pylint.
Pylints import directory resolution model isn't the same
as the python interpreters, so at times it believes it
cannot import a module when the interpreter can. This
failure is falky and depends on the path ordering/environment;
it doesn't repro on my machine. Disabling the F mode for now.
BUG=chromium-os:37948
TEST=Made sure it worked in the environment it failed in.
Change-Id: I3a5f91a066d9e45d1db82135213675c109c3420a
Reviewed-on: https://gerrit.chromium.org/gerrit/41429
Commit-Queue: Prashanth Balasubramanian <[email protected]>
Reviewed-by: Prashanth Balasubramanian <[email protected]>
Tested-by: Prashanth Balasubramanian <[email protected]>
diff --git a/utils/run_pylint.py b/utils/run_pylint.py
index 6db9f2d..e74c3ca 100755
--- a/utils/run_pylint.py
+++ b/utils/run_pylint.py
@@ -225,7 +225,7 @@
if pylint_version >= 0.21:
pylint_base_opts = ['--rcfile=%s' % pylint_rc,
'--reports=no',
- '--disable=W,R,E,C',
+ '--disable=W,R,E,C,F',
'--enable=W0611',]
else:
all_failures = 'error,warning,refactor,convention'