Mercurial > hg
changeset 19384:96fd9af75834
tests: check-code all python files in one run
author | Simon Heimberg <simohe@besonet.ch> |
---|---|
date | Sat, 06 Jul 2013 21:47:56 +0200 |
parents | 41c06a02814e |
children | c455e703348e |
files | tests/test-check-code-hg.t |
diffstat | 1 files changed, 6 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/tests/test-check-code-hg.t Thu Jul 04 23:05:59 2013 +0900 +++ b/tests/test-check-code-hg.t Sat Jul 06 21:47:56 2013 +0200 @@ -6,13 +6,7 @@ > 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 +Prepare check for Python files without py extension $ cp \ > hg \ @@ -29,5 +23,9 @@ > tests/dummyssh \ > "$TESTTMP"/ $ for f in "$TESTTMP"/*; do cp "$f" "$f.py"; done - $ "$check_code" --warnings --nolineno --per-file=0 "$TESTTMP"/*.py \ + +New errors are not allowed. Warnings are strongly discouraged. + + $ { hg manifest 2>/dev/null; ls "$TESTTMP"/*.py; } \ + > | xargs "$check_code" --warnings --nolineno --per-file=0 \ > || false