diff options
author | Simon Glass <sjg@chromium.org> | 2022-08-13 11:40:41 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2022-08-20 18:07:32 -0600 |
commit | 8816edabbdc6e396e6d1317be5eeb58b8d87b16a (patch) | |
tree | 4f91e5d3a57c64156998692b442e46ad01c13c47 /tools/patman | |
parent | 55bc22760c362bba478d449ea7ba59667c4eefe4 (diff) | |
download | u-boot-8816edabbdc6e396e6d1317be5eeb58b8d87b16a.zip u-boot-8816edabbdc6e396e6d1317be5eeb58b8d87b16a.tar.gz u-boot-8816edabbdc6e396e6d1317be5eeb58b8d87b16a.tar.bz2 |
patman: Put the coverage command-line last
Put this at the end so it is easier to copy it from the terminal.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/patman')
-rw-r--r-- | tools/patman/test_util.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/patman/test_util.py b/tools/patman/test_util.py index c27e0b3..7df2aec 100644 --- a/tools/patman/test_util.py +++ b/tools/patman/test_util.py @@ -81,8 +81,7 @@ def run_test_coverage(prog, filter_fname, exclude_list, build_dir, required=None print(coverage) if coverage != '100%': print(stdout) - print("Type 'python3-coverage html' to get a report in " - 'htmlcov/index.html') + print("To get a report in 'htmlcov/index.html', type: python3-coverage html") print('Coverage error: %s, but should be 100%%' % coverage) ok = False if not ok: |