aboutsummaryrefslogtreecommitdiff
path: root/python/run-tests
diff options
context:
space:
mode:
authorJosh Rosen <joshrosen@eecs.berkeley.edu>2013-01-21 16:42:24 -0800
committerJosh Rosen <joshrosen@eecs.berkeley.edu>2013-01-21 17:34:17 -0800
commitef711902c1f42db14c8ddd524195f0a9efb56e65 (patch)
treee770a7439d3983c13346cbd81aa1eeeef23e2571 /python/run-tests
parent506077c9938cd411842fe42404aa6b74b45b23a1 (diff)
downloadspark-ef711902c1f42db14c8ddd524195f0a9efb56e65.tar.gz
spark-ef711902c1f42db14c8ddd524195f0a9efb56e65.tar.bz2
spark-ef711902c1f42db14c8ddd524195f0a9efb56e65.zip
Don't download files to master's working directory.
This should avoid exceptions caused by existing files with different contents. I also removed some unused code.
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 ce214e98a8..a3a9ff5dcb 100755
--- a/python/run-tests
+++ b/python/run-tests
@@ -8,6 +8,9 @@ FAILED=0
$FWDIR/pyspark pyspark/rdd.py
FAILED=$(($?||$FAILED))
+$FWDIR/pyspark pyspark/context.py
+FAILED=$(($?||$FAILED))
+
$FWDIR/pyspark -m doctest pyspark/broadcast.py
FAILED=$(($?||$FAILED))