aboutsummaryrefslogtreecommitdiff
path: root/python/run-tests
diff options
context:
space:
mode:
authorPatrick Wendell <pwendell@gmail.com>2014-01-03 11:24:35 -0800
committerPatrick Wendell <pwendell@gmail.com>2014-01-03 11:24:35 -0800
commit4ae101ff38f4cd107e54d97d9493ecd4a0c3a633 (patch)
tree482f769888453dd577711792e435ad6ad63b01d7 /python/run-tests
parent30b9db0abedbef7afa06a927a011147cfeca2a70 (diff)
parent9ae382c363202eac8ef0b8e0fe1a7eab3de545b1 (diff)
downloadspark-4ae101ff38f4cd107e54d97d9493ecd4a0c3a633.tar.gz
spark-4ae101ff38f4cd107e54d97d9493ecd4a0c3a633.tar.bz2
spark-4ae101ff38f4cd107e54d97d9493ecd4a0c3a633.zip
Merge pull request #317 from ScrapCodes/spark-915-segregate-scripts
Spark-915 segregate scripts
Diffstat (limited to 'python/run-tests')
-rwxr-xr-xpython/run-tests2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/run-tests b/python/run-tests
index 4b71fff7c1..feba97cee0 100755
--- a/python/run-tests
+++ b/python/run-tests
@@ -29,7 +29,7 @@ FAILED=0
rm -f unit-tests.log
function run_test() {
- SPARK_TESTING=0 $FWDIR/pyspark $1 2>&1 | tee -a unit-tests.log
+ SPARK_TESTING=0 $FWDIR/bin/pyspark $1 2>&1 | tee -a unit-tests.log
FAILED=$((PIPESTATUS[0]||$FAILED))
}