aboutsummaryrefslogtreecommitdiff
path: root/dev/run-tests
diff options
context:
space:
mode:
authorPrashant Sharma <prashant.s@imaginea.com>2014-03-29 23:03:03 -0700
committerPatrick Wendell <pwendell@gmail.com>2014-03-29 23:03:03 -0700
commitdf1b9f7b1a07bf8d806695a7684f9d69bf705093 (patch)
tree6591e63c787a9698271d0777e6fad15308774e20 /dev/run-tests
parent2861b07bb030f72769f5b757b4a7d4a635807140 (diff)
downloadspark-df1b9f7b1a07bf8d806695a7684f9d69bf705093.tar.gz
spark-df1b9f7b1a07bf8d806695a7684f9d69bf705093.tar.bz2
spark-df1b9f7b1a07bf8d806695a7684f9d69bf705093.zip
SPARK-1336 Reducing the output of run-tests script.
Author: Prashant Sharma <prashant.s@imaginea.com> Author: Prashant Sharma <scrapcodes@gmail.com> Closes #262 from ScrapCodes/SPARK-1336/ReduceVerbosity and squashes the following commits: 87dfa54 [Prashant Sharma] Further reduction in noise and made pyspark tests to fail fast. 811170f [Prashant Sharma] Reducing the ouput of run-tests script.
Diffstat (limited to 'dev/run-tests')
-rwxr-xr-xdev/run-tests7
1 files changed, 3 insertions, 4 deletions
diff --git a/dev/run-tests b/dev/run-tests
index 6f115d2abd..a6fcc40a5b 100755
--- a/dev/run-tests
+++ b/dev/run-tests
@@ -39,18 +39,17 @@ JAVA_VERSION=$($java_cmd -version 2>&1 | sed 's/java version "\(.*\)\.\(.*\)\..*
echo "========================================================================="
echo "Running Apache RAT checks"
echo "========================================================================="
-
dev/check-license
echo "========================================================================="
echo "Running Scala style checks"
echo "========================================================================="
-sbt/sbt clean scalastyle
+dev/scalastyle
echo "========================================================================="
echo "Running Spark unit tests"
echo "========================================================================="
-sbt/sbt assembly test
+sbt/sbt assembly test | grep -v -e "info.*Resolving" -e "warn.*Merging" -e "info.*Including"
echo "========================================================================="
echo "Running PySpark tests"
@@ -64,5 +63,5 @@ echo "========================================================================="
echo "Detecting binary incompatibilites with MiMa"
echo "========================================================================="
./bin/spark-class org.apache.spark.tools.GenerateMIMAIgnore
-sbt/sbt mima-report-binary-issues
+sbt/sbt mima-report-binary-issues | grep -v -e "info.*Resolving"