Skip to content

Commit a1ce7ae

Browse files
committed
[SPARK-2627] space out test report sections
Everything looks cramped and it’s hard to tell at a glance where sections begin. Adding a blank line between sections should fix that.
1 parent 21da538 commit a1ce7ae

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

dev/run-tests

+6
Original file line numberDiff line numberDiff line change
@@ -66,21 +66,25 @@ fi
6666
set -e
6767
set -o pipefail
6868

69+
echo ""
6970
echo "========================================================================="
7071
echo "Running Apache RAT checks"
7172
echo "========================================================================="
7273
dev/check-license
7374

75+
echo ""
7476
echo "========================================================================="
7577
echo "Running Scala style checks"
7678
echo "========================================================================="
7779
dev/lint-scala
7880

81+
echo ""
7982
echo "========================================================================="
8083
echo "Running Python style checks"
8184
echo "========================================================================="
8285
dev/lint-python
8386

87+
echo ""
8488
echo "========================================================================="
8589
echo "Running Spark unit tests"
8690
echo "========================================================================="
@@ -94,11 +98,13 @@ fi
9498
echo -e "q\n" | sbt/sbt $SBT_MAVEN_PROFILES_ARGS clean package assembly/assembly test | \
9599
grep -v -e "info.*Resolving" -e "warn.*Merging" -e "info.*Including"
96100

101+
echo ""
97102
echo "========================================================================="
98103
echo "Running PySpark tests"
99104
echo "========================================================================="
100105
./python/run-tests
101106

107+
echo ""
102108
echo "========================================================================="
103109
echo "Detecting binary incompatibilites with MiMa"
104110
echo "========================================================================="

0 commit comments

Comments
 (0)