Skip to content

Commit 2b35a59

Browse files
committed
Modified wrong usage of tee command in python/run-tests
1 parent e053c55 commit 2b35a59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/run-tests

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ rm -rf metastore warehouse
3333

3434
function run_test() {
3535
echo "Running test: $1"
36-
SPARK_TESTING=1 $FWDIR/bin/pyspark $1 2>&1 | tee -a > unit-tests.log
36+
SPARK_TESTING=1 $FWDIR/bin/pyspark $1 2>&1 | tee -a unit-tests.log
3737
FAILED=$((PIPESTATUS[0]||$FAILED))
3838

3939
# Fail and exit on the first test failure.

0 commit comments

Comments
 (0)