aboutsummaryrefslogtreecommitdiff
path: root/dev/run-tests
diff options
context:
space:
mode:
authorMichael Armbrust <michael@databricks.com>2014-04-03 16:53:35 -0700
committerReynold Xin <rxin@apache.org>2014-04-03 16:53:35 -0700
commit9231b011a9ba5a2b25bd3d1a68be7d1a7cb735da (patch)
tree75e9b9fedbdf8c68aaf35a62048d439cf1fa9cfc /dev/run-tests
parentd94826be6d46edf3bc6377d33787df23a6030a6c (diff)
downloadspark-9231b011a9ba5a2b25bd3d1a68be7d1a7cb735da.tar.gz
spark-9231b011a9ba5a2b25bd3d1a68be7d1a7cb735da.tar.bz2
spark-9231b011a9ba5a2b25bd3d1a68be7d1a7cb735da.zip
Fix jenkins from giving the green light to builds that don't compile.
Adding `| grep` swallows the non-zero return code from sbt failures. See [here](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/13735/consoleFull) for a Jenkins run that fails to compile, but still gets a green light. Note the [BUILD FIX] commit isn't actually part of this PR, but github is out of date. Author: Michael Armbrust <michael@databricks.com> Closes #317 from marmbrus/fixJenkins and squashes the following commits: 7c77ff9 [Michael Armbrust] Remove output filter that was swallowing non-zero exit codes for test failures.
Diffstat (limited to 'dev/run-tests')
-rwxr-xr-xdev/run-tests2
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/run-tests b/dev/run-tests
index a6fcc40a5b..fff949e04f 100755
--- a/dev/run-tests
+++ b/dev/run-tests
@@ -49,7 +49,7 @@ dev/scalastyle
echo "========================================================================="
echo "Running Spark unit tests"
echo "========================================================================="
-sbt/sbt assembly test | grep -v -e "info.*Resolving" -e "warn.*Merging" -e "info.*Including"
+sbt/sbt assembly test
echo "========================================================================="
echo "Running PySpark tests"