aboutsummaryrefslogtreecommitdiff
path: root/dev/run-tests-jenkins
diff options
context:
space:
mode:
authorBrennon York <brennon.york@capitalone.com>2015-03-24 10:33:04 +0000
committerSean Owen <sowen@cloudera.com>2015-03-24 10:33:04 +0000
commit37fac1dcd2b0f2845d2952a417fcf85d40351f57 (patch)
treeaaccba9616ca841baf6212d3e9d90eca76c91d3d /dev/run-tests-jenkins
parent1afcf773d0cafdfd9bf106fdc5c429ed2ba3dd36 (diff)
downloadspark-37fac1dcd2b0f2845d2952a417fcf85d40351f57.tar.gz
spark-37fac1dcd2b0f2845d2952a417fcf85d40351f57.tar.bz2
spark-37fac1dcd2b0f2845d2952a417fcf85d40351f57.zip
[SPARK-6477][Build]: Run MIMA tests before the Spark test suite
This moves the MIMA checks to before the full Spark test suite such that, if new PR's fail the MIMA check, they will return much faster having not run the entire test suite. This is preferable to the current scenario where a user would have to wait until the entire test suite completes before realizing it failed on a MIMA check in which case, once the MIMA issues are fixed, the user would have to resubmit and rerun the full test suite again. Author: Brennon York <brennon.york@capitalone.com> Closes #5145 from brennonyork/SPARK-6477 and squashes the following commits: 12b0aee [Brennon York] updated to put the mima checks before the spark test suite
Diffstat (limited to 'dev/run-tests-jenkins')
-rwxr-xr-xdev/run-tests-jenkins4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/run-tests-jenkins b/dev/run-tests-jenkins
index 5f4000e839..3a937b637e 100755
--- a/dev/run-tests-jenkins
+++ b/dev/run-tests-jenkins
@@ -199,12 +199,12 @@ done
failing_test="Python style tests"
elif [ "$test_result" -eq "$BLOCK_BUILD" ]; then
failing_test="to build"
+ elif [ "$test_result" -eq "$BLOCK_MIMA" ]; then
+ failing_test="MiMa tests"
elif [ "$test_result" -eq "$BLOCK_SPARK_UNIT_TESTS" ]; then
failing_test="Spark unit tests"
elif [ "$test_result" -eq "$BLOCK_PYSPARK_UNIT_TESTS" ]; then
failing_test="PySpark unit tests"
- elif [ "$test_result" -eq "$BLOCK_MIMA" ]; then
- failing_test="MiMa tests"
else
failing_test="some tests"
fi