diff options
author | Simon Glass <sjg@chromium.org> | 2021-11-21 20:48:36 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-01-24 16:03:27 -0500 |
commit | f0198f7f8936682752af2044ada7ef202c17f87a (patch) | |
tree | 41c6003a4421132c4a75758c8d63c96e16d03eb7 /.gitignore | |
parent | 253373d307e62ec6b78132ba9eae481fb748454c (diff) | |
download | u-boot-f0198f7f8936682752af2044ada7ef202c17f87a.tar.gz u-boot-f0198f7f8936682752af2044ada7ef202c17f87a.tar.bz2 u-boot-f0198f7f8936682752af2044ada7ef202c17f87a.zip |
.gitignore: Ignore any html coverage directory
This is created when checking code coverage of Python tools. Ignore it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index e66aa864da..35034de655 100644 --- a/.gitignore +++ b/.gitignore @@ -95,3 +95,6 @@ GTAGS # Python cache __pycache__ + +# Python code coverage output (python3-coverage html) +/htmlcov/ |