# HG changeset patch # User Simon Heimberg # Date 2013-07-06 19:47:56 # Node ID 96fd9af75834641ba3b8cd2e8583d604f269da3e # Parent 41c06a02814e29e80f9d30c20bcfb61de7edfafa tests: check-code all python files in one run diff --git a/tests/test-check-code-hg.t b/tests/test-check-code-hg.t --- a/tests/test-check-code-hg.t +++ b/tests/test-check-code-hg.t @@ -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 @@ Check Python files without py extension > 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