[PATCH] Shut up, parallel

David Shea dshea at redhat.com
Thu Sep 25 20:36:44 UTC 2014


---
 scripts/githooks/pre-push      | 2 +-
 tests/glade/run_glade_tests.sh | 2 +-
 tests/pylint/runpylint.sh      | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/scripts/githooks/pre-push b/scripts/githooks/pre-push
index 5cfbcca..ca84b53 100755
--- a/scripts/githooks/pre-push
+++ b/scripts/githooks/pre-push
@@ -77,7 +77,7 @@ fi
 
 ## main ##
 # fork separate process for every commit, querying bugzilla takes time
-echo -n ${commits}|parallel -d' ' --gnu -j0 .git/hooks/check_commit_msg.sh ${release} {}
+echo -n ${commits}|parallel --no-notice -d' ' --gnu -j0 .git/hooks/check_commit_msg.sh ${release} {}
 ret=$?
 if [ ${ACK_FATAL} == "0" ]; then
     test ${ret} -eq 0
diff --git a/tests/glade/run_glade_tests.sh b/tests/glade/run_glade_tests.sh
index 730d2d3..8ebcbfe 100755
--- a/tests/glade/run_glade_tests.sh
+++ b/tests/glade/run_glade_tests.sh
@@ -27,7 +27,7 @@ fi
 
 status=0
 for check in ${srcdir}/*/check_*.py ; do
-    findtestfiles -name '*.glade' | parallel --gnu -j0 "${check}" "$@" {}
+    findtestfiles -name '*.glade' | parallel --no-notice --gnu -j0 "${check}" "$@" {}
     if [ "$?" -ne 0 ]; then
         status=1
     fi
diff --git a/tests/pylint/runpylint.sh b/tests/pylint/runpylint.sh
index c2a9393..bd863bf 100755
--- a/tests/pylint/runpylint.sh
+++ b/tests/pylint/runpylint.sh
@@ -124,7 +124,7 @@ if [ -z "$FILES" ]; then
 fi
 
 # run pylint in paralel
-output=$(echo -n $FILES | parallel -d' ' --gnu "$srcdir"/pylint-one.sh $ARGS {})
+output=$(echo -n $FILES | parallel --no-notice -d' ' --gnu "$srcdir"/pylint-one.sh $ARGS {})
 exit_status=$?
 
 if [ "$output" != '\n' -a "$output" != "" ]; then
-- 
2.1.0



More information about the anaconda-patches mailing list