]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
test/py: Disable error E0611 in two cases for pylint
authorTom Rini <trini@konsulko.com>
Sat, 9 Dec 2023 19:52:46 +0000 (14:52 -0500)
committerTom Rini <trini@konsulko.com>
Sat, 9 Dec 2023 20:59:13 +0000 (15:59 -0500)
Recently pylint has started to complain about:
No name 'fs_helper' in module 'tests' (no-name-in-module)

Due to:
from tests import fs_helper

However, we have:
test/py/tests/fs_helper.py

And since we do not want to add a dummy test/py/tests/__init__.py to
silence this warning we instead just disable it as needed.

Cc: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Rini <trini@konsulko.com>
test/py/tests/test_fs/conftest.py
test/py/tests/test_ut.py

index fdd138d6ee4d9652a81d8f7b42862c54ac76ff25..fca54488374ff54cdc53640e8e1976535367864a 100644 (file)
@@ -9,6 +9,7 @@ import re
 from subprocess import call, check_call, check_output, CalledProcessError
 from fstest_defs import *
 import u_boot_utils as util
+# pylint: disable=E0611
 from tests import fs_helper
 
 supported_fs_basic = ['fat16', 'fat32', 'ext4']
index 1d9149a3f683f653ccbe8324bee5eed7f2054879..0e3a48e73f611c6119632873e42af892a9ae073c 100644 (file)
@@ -9,6 +9,7 @@ import os.path
 import pytest
 
 import u_boot_utils
+# pylint: disable=E0611
 from tests import fs_helper
 
 def mkdir_cond(dirname):