##// END OF EJS Templates
win32mbcs: wrap util.split()...
win32mbcs: wrap util.split() util.split() should be wrapped because it is an alias of unsafe os.path.split().

File last commit:

r19321:2d03c8da default
r19383:41c06a02 default
Show More
test-check-code-hg.t
33 lines | 873 B | text/troff | Tads3Lexer
/ tests / test-check-code-hg.t
$ check_code="$TESTDIR"/../contrib/check-code.py
$ cd "$TESTDIR"/..
$ if hg identify -q > /dev/null 2>&1; then :
> else
> echo "skipped: not a Mercurial working dir" >&2
> exit 80
> fi
New errors are not allowed. Warnings are strongly discouraged.
$ hg manifest 2>/dev/null \
> | xargs "$check_code" --warnings --nolineno --per-file=0 \
> || false
Check Python files without py extension
$ cp \
> hg \
> hgweb.cgi \
> contrib/convert-repo \
> contrib/dumprevlog \
> contrib/hgweb.fcgi \
> contrib/hgweb.wsgi \
> contrib/simplemerge \
> contrib/undumprevlog \
> i18n/hggettext \
> i18n/posplit \
> tests/hghave \
> tests/dummyssh \
> "$TESTTMP"/
$ for f in "$TESTTMP"/*; do cp "$f" "$f.py"; done
$ "$check_code" --warnings --nolineno --per-file=0 "$TESTTMP"/*.py \
> || false