From a1ce7ae405754600cf92828bf0db3271c46e4961 Mon Sep 17 00:00:00 2001 From: Nicholas Chammas Date: Sun, 3 Aug 2014 13:47:50 -0400 Subject: [PATCH] [SPARK-2627] space out test report sections MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Everything looks cramped and it’s hard to tell at a glance where sections begin. Adding a blank line between sections should fix that. --- dev/run-tests | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dev/run-tests b/dev/run-tests index 32c3f90fa41c8..0e24515d1376c 100755 --- a/dev/run-tests +++ b/dev/run-tests @@ -66,21 +66,25 @@ fi set -e set -o pipefail +echo "" echo "=========================================================================" echo "Running Apache RAT checks" echo "=========================================================================" dev/check-license +echo "" echo "=========================================================================" echo "Running Scala style checks" echo "=========================================================================" dev/lint-scala +echo "" echo "=========================================================================" echo "Running Python style checks" echo "=========================================================================" dev/lint-python +echo "" echo "=========================================================================" echo "Running Spark unit tests" echo "=========================================================================" @@ -94,11 +98,13 @@ fi echo -e "q\n" | sbt/sbt $SBT_MAVEN_PROFILES_ARGS clean package assembly/assembly test | \ grep -v -e "info.*Resolving" -e "warn.*Merging" -e "info.*Including" +echo "" echo "=========================================================================" echo "Running PySpark tests" echo "=========================================================================" ./python/run-tests +echo "" echo "=========================================================================" echo "Detecting binary incompatibilites with MiMa" echo "========================================================================="