diff options
author | Simon Glass <sjg@chromium.org> | 2023-02-23 18:18:07 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2023-03-08 11:40:49 -0800 |
commit | a545dc1db91bfe9ba04d39c27070cabdbafa6111 (patch) | |
tree | 18d1bcb7e4aaab3d75ec88960e3fe08afcf47d92 | |
parent | 75554dfac298f86038124b2fb133fd40cbbaa29c (diff) | |
download | u-boot-a545dc1db91bfe9ba04d39c27070cabdbafa6111.zip u-boot-a545dc1db91bfe9ba04d39c27070cabdbafa6111.tar.gz u-boot-a545dc1db91bfe9ba04d39c27070cabdbafa6111.tar.bz2 |
patman: Avoid importing test_checkpatch before it is needed
Tests are not packaged with patman so this file will not be accessible
when installing with pip. Move the import later in the file, when we
know the file is present.
Signed-off-by: Simon Glass <sjg@chromium.org>
-rwxr-xr-x | tools/patman/__main__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/patman/__main__.py b/tools/patman/__main__.py index 3063255..48ffbc8 100755 --- a/tools/patman/__main__.py +++ b/tools/patman/__main__.py @@ -24,7 +24,6 @@ from patman import func_test from patman import gitutil from patman import project from patman import settings -from patman import test_checkpatch from u_boot_pylib import terminal from u_boot_pylib import test_util from u_boot_pylib import tools @@ -146,6 +145,7 @@ if not args.debug: # Run our meagre tests if args.cmd == 'test': from patman import func_test + from patman import test_checkpatch result = test_util.run_test_suites( 'patman', False, False, False, None, None, None, |