test-check-code-hg.t
33 lines
| 873 B
| text/troff
|
Tads3Lexer
/ tests / test-check-code-hg.t
Mads Kiilerich
|
r15557 | $ check_code="$TESTDIR"/../contrib/check-code.py | ||
$ cd "$TESTDIR"/.. | ||||
Kevin Bullock
|
r18601 | $ if hg identify -q > /dev/null 2>&1; then : | ||
Mads Kiilerich
|
r16485 | > else | ||
Greg Ward
|
r16179 | > echo "skipped: not a Mercurial working dir" >&2 | ||
> exit 80 | ||||
> fi | ||||
Mads Kiilerich
|
r15558 | |||
Matt Mackall
|
r17977 | New errors are not allowed. Warnings are strongly discouraged. | ||
Kevin Bullock
|
r18601 | $ hg manifest 2>/dev/null \ | ||
> | xargs "$check_code" --warnings --nolineno --per-file=0 \ | ||||
> || false | ||||
Mads Kiilerich
|
r19022 | |||
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 \ | ||||
simon@laptop-tosh
|
r19321 | > i18n/hggettext \ | ||
> i18n/posplit \ | ||||
> tests/hghave \ | ||||
> tests/dummyssh \ | ||||
Mads Kiilerich
|
r19022 | > "$TESTTMP"/ | ||
$ for f in "$TESTTMP"/*; do cp "$f" "$f.py"; done | ||||
$ "$check_code" --warnings --nolineno --per-file=0 "$TESTTMP"/*.py \ | ||||
> || false | ||||