aboutsummaryrefslogtreecommitdiff
path: root/python/run-tests
diff options
context:
space:
mode:
authorMatei Zaharia <matei@eecs.berkeley.edu>2013-01-20 01:59:07 -0800
committerMatei Zaharia <matei@eecs.berkeley.edu>2013-01-20 01:59:07 -0800
commit61b6382a352f3e801643529198b867e13debf470 (patch)
tree7a958e5b8e4b614d8523ec88aa40f4533df1504e /python/run-tests
parent8e7f098a2c9e5e85cb9435f28d53a3a5847c14aa (diff)
downloadspark-61b6382a352f3e801643529198b867e13debf470.tar.gz
spark-61b6382a352f3e801643529198b867e13debf470.tar.bz2
spark-61b6382a352f3e801643529198b867e13debf470.zip
Launch accumulator tests in run-tests
Diffstat (limited to 'python/run-tests')
-rwxr-xr-xpython/run-tests3
1 files changed, 3 insertions, 0 deletions
diff --git a/python/run-tests b/python/run-tests
index fcdd1e27a7..32470911f9 100755
--- a/python/run-tests
+++ b/python/run-tests
@@ -11,6 +11,9 @@ FAILED=$(($?||$FAILED))
$FWDIR/pyspark -m doctest pyspark/broadcast.py
FAILED=$(($?||$FAILED))
+$FWDIR/pyspark -m doctest pyspark/accumulators.py
+FAILED=$(($?||$FAILED))
+
if [[ $FAILED != 0 ]]; then
echo -en "\033[31m" # Red
echo "Had test failures; see logs."