Mercurial > hg
changeset 20239:16b5f498f49c
check-code: always report when a file is skipped by "no-check-code"
Skipping an entire file generally from checking is an important event, so
report it always.
Do not tell the check name because skipping does not depend on it. Directly
skip the entire file instead of checking more patterns and skip again.
The pragma no-check-code was introduced by accident in the past. (Fixed in
e033a7d444ac and ee07f9d142c9.) This now is prevented because the files
to skip have to be listed in the test output of test-check-code-hg.t.
author | Simon Heimberg <simohe@besonet.ch> |
---|---|
date | Tue, 07 Jan 2014 22:29:15 +0100 |
parents | 81e905790b30 |
children | 60c4d76b79b5 |
files | contrib/check-code.py tests/test-check-code-hg.t |
diffstat | 2 files changed, 8 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/contrib/check-code.py Tue Jan 07 22:28:45 2014 +0100 +++ b/contrib/check-code.py Tue Jan 07 22:29:15 2014 +0100 @@ -441,10 +441,8 @@ pre = post = fp.read() fp.close() if "no-" "check-code" in pre: - if debug: - print "Skipping %s for %s it has no-" "check-code" % ( - name, f) - break + print "Skipping %s it has no-" "check-code" % f + return "Skip" # skip checking this file for p, r in filters: post = re.sub(p, r, post) nerrs = len(pats[0]) # nerr elements are errors
--- a/tests/test-check-code-hg.t Tue Jan 07 22:28:45 2014 +0100 +++ b/tests/test-check-code-hg.t Tue Jan 07 22:29:15 2014 +0100 @@ -25,6 +25,12 @@ $ for f in "$TESTTMP"/*; do mv "$f" "$f.py"; done New errors are not allowed. Warnings are strongly discouraged. +(The writing "no-che?k-code" is for not skipping this file when checking.) $ { hg manifest 2>/dev/null; ls "$TESTTMP"/*.py | sed 's-\\-/-g'; } | > xargs "$check_code" --warnings --per-file=0 || false + Skipping hgext/zeroconf/Zeroconf.py it has no-che?k-code (glob) + Skipping i18n/polib.py it has no-che?k-code (glob) + Skipping mercurial/httpclient/__init__.py it has no-che?k-code (glob) + Skipping mercurial/httpclient/_readers.py it has no-che?k-code (glob) + Skipping mercurial/httpclient/socketutil.py it has no-che?k-code (glob)