aboutsummaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorKousuke Saruta <sarutak@oss.nttdata.co.jp>2014-09-04 10:29:11 -0700
committerReynold Xin <rxin@apache.org>2014-09-04 10:29:18 -0700
commitdbf8120221945f3fbd19698e533d3328d8e20029 (patch)
tree2b7f1b1fc1cbe5744ab61cd6b0d39f514b844946 /python
parent8c40ab5c06ab72e85a8a9d4272fed0e81eca1d3a (diff)
downloadspark-dbf8120221945f3fbd19698e533d3328d8e20029.tar.gz
spark-dbf8120221945f3fbd19698e533d3328d8e20029.tar.bz2
spark-dbf8120221945f3fbd19698e533d3328d8e20029.zip
[SPARK-3401][PySpark] Wrong usage of tee command in python/run-tests
Author: Kousuke Saruta <sarutak@oss.nttdata.co.jp> Closes #2272 from sarutak/SPARK-3401 and squashes the following commits: 2b35a59 [Kousuke Saruta] Modified wrong usage of tee command in python/run-tests (cherry picked from commit 4feb46c5feca8d48ec340dc9c8d0eccbcd41f505) Signed-off-by: Reynold Xin <rxin@apache.org>
Diffstat (limited to 'python')
-rwxr-xr-xpython/run-tests2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/run-tests b/python/run-tests
index 7b1ee3e1cd..d671da4003 100755
--- a/python/run-tests
+++ b/python/run-tests
@@ -33,7 +33,7 @@ rm -rf metastore warehouse
function run_test() {
echo "Running test: $1"
- SPARK_TESTING=1 $FWDIR/bin/pyspark $1 2>&1 | tee -a > unit-tests.log
+ SPARK_TESTING=1 $FWDIR/bin/pyspark $1 2>&1 | tee -a unit-tests.log
FAILED=$((PIPESTATUS[0]||$FAILED))
# Fail and exit on the first test failure.