Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions python/run-tests
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function run_test() {

# 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.
cat $LOG_FILE | grep -v "^[0-9][0-9]*" # filter all lines starting with a number.
echo -en "\033[31m" # Red
echo "Had test failures; see logs."
echo -en "\033[0m" # No color
Expand Down Expand Up @@ -87,7 +87,7 @@ function run_streaming_tests() {
run_test "pyspark/streaming/tests.py"
}

echo "Running PySpark tests. Output is in python/unit-tests.log."
echo "Running PySpark tests. Output is in python/$LOG_FILE."

export PYSPARK_PYTHON="python"

Expand Down