Skip to content

Commit 3250550

Browse files
committed
Changes to debug flaky streaming tests.
1 parent fa01bec commit 3250550

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

dev/run-tests

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ echo "========================================================================="
113113

114114
CURRENT_BLOCK=$BLOCK_RAT
115115

116-
./dev/check-license
116+
# ./dev/check-license
117117

118118
echo ""
119119
echo "========================================================================="
@@ -122,7 +122,7 @@ echo "========================================================================="
122122

123123
CURRENT_BLOCK=$BLOCK_SCALA_STYLE
124124

125-
./dev/lint-scala
125+
# ./dev/lint-scala
126126

127127
echo ""
128128
echo "========================================================================="
@@ -131,7 +131,7 @@ echo "========================================================================="
131131

132132
CURRENT_BLOCK=$BLOCK_PYTHON_STYLE
133133

134-
./dev/lint-python
134+
# ./dev/lint-python
135135

136136
echo ""
137137
echo "========================================================================="
@@ -185,7 +185,7 @@ echo "========================================================================="
185185

186186
CURRENT_BLOCK=$BLOCK_MIMA
187187

188-
./dev/mima
188+
# ./dev/mima
189189

190190
echo ""
191191
echo "========================================================================="
@@ -223,7 +223,7 @@ CURRENT_BLOCK=$BLOCK_SPARK_UNIT_TESTS
223223
# QUESTION: Why doesn't 'yes "q"' work?
224224
# QUESTION: Why doesn't 'grep -v -e "^\[info\] Resolving"' work?
225225
echo -e "q\n" \
226-
| build/sbt $SBT_MAVEN_PROFILES_ARGS "${SBT_MAVEN_TEST_ARGS[@]}" \
226+
| build/sbt $SBT_MAVEN_PROFILES_ARGS "test-only/streaming *WriteAheadLog*" "test-only/streaming *JobGenerator*" \
227227
| grep -v -e "info.*Resolving" -e "warn.*Merging" -e "info.*Including"
228228
fi
229229
}
@@ -247,8 +247,8 @@ echo "========================================================================="
247247
CURRENT_BLOCK=$BLOCK_SPARKR_UNIT_TESTS
248248

249249
if [ $(command -v R) ]; then
250-
./R/install-dev.sh
251-
./R/run-tests.sh
250+
#./R/install-dev.sh
251+
#./R/run-tests.sh
252252
else
253253
echo "Ignoring SparkR tests as R was not found in PATH"
254254
fi

python/run-tests

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -134,10 +134,10 @@ fi
134134
echo "Testing with Python version:"
135135
$PYSPARK_PYTHON --version
136136

137-
run_core_tests
138-
run_sql_tests
139-
run_mllib_tests
140-
run_ml_tests
137+
# run_core_tests
138+
# run_sql_tests
139+
# run_mllib_tests
140+
# run_ml_tests
141141
run_streaming_tests
142142

143143
# Try to test with Python 3
@@ -146,10 +146,10 @@ if [ $(which python3.4) ]; then
146146
echo "Testing with Python3.4 version:"
147147
$PYSPARK_PYTHON --version
148148

149-
run_core_tests
150-
run_sql_tests
151-
run_mllib_tests
152-
run_ml_tests
149+
# run_core_tests
150+
# run_sql_tests
151+
# run_mllib_tests
152+
# run_ml_tests
153153
run_streaming_tests
154154
fi
155155

@@ -159,8 +159,8 @@ if [ $(which pypy) ]; then
159159
echo "Testing with PyPy version:"
160160
$PYSPARK_PYTHON --version
161161

162-
run_core_tests
163-
run_sql_tests
162+
# run_core_tests
163+
# run_sql_tests
164164
run_streaming_tests
165165
fi
166166

0 commit comments

Comments
 (0)