test-check-code-hg.t
30 lines
| 820 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 | |||
Simon Heimberg
|
r19384 | Prepare check for Python files without py extension | ||
Mads Kiilerich
|
r19022 | |||
$ 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"/ | ||
Simon Heimberg
|
r19385 | $ for f in "$TESTTMP"/*; do mv "$f" "$f.py"; done | ||
Simon Heimberg
|
r19384 | |||
New errors are not allowed. Warnings are strongly discouraged. | ||||
Simon Heimberg
|
r19495 | $ { hg manifest 2>/dev/null; ls "$TESTTMP"/*.py | sed 's-\\-/-g'; } | | ||
> xargs "$check_code" --warnings --per-file=0 || false | ||||