Skip to content

Commit

Permalink
Add linalg.py to run-tests script
Browse files Browse the repository at this point in the history
  • Loading branch information
mateiz committed Apr 15, 2014
1 parent 0e7a3d8 commit a5d6426
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/run-tests
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ rm -rf metastore warehouse
function run_test() {
SPARK_TESTING=0 $FWDIR/bin/pyspark $1 2>&1 | tee -a > unit-tests.log
FAILED=$((PIPESTATUS[0]||$FAILED))

# Fail and exit on the first test failure.
if [[ $FAILED != 0 ]]; then
cat unit-tests.log | grep -v "^[0-9][0-9]*" # filter all lines starting with a number.
Expand All @@ -57,6 +57,7 @@ run_test "pyspark/tests.py"
run_test "pyspark/mllib/_common.py"
run_test "pyspark/mllib/classification.py"
run_test "pyspark/mllib/clustering.py"
run_test "pyspark/mllib/linalg.py"
run_test "pyspark/mllib/recommendation.py"
run_test "pyspark/mllib/regression.py"

Expand Down

0 comments on commit a5d6426

Please sign in to comment.