aboutsummaryrefslogtreecommitdiff
path: root/dev/lint-python
diff options
context:
space:
mode:
Diffstat (limited to 'dev/lint-python')
-rwxr-xr-xdev/lint-python28
1 files changed, 14 insertions, 14 deletions
diff --git a/dev/lint-python b/dev/lint-python
index e02dff220e..53bccc1fab 100755
--- a/dev/lint-python
+++ b/dev/lint-python
@@ -96,19 +96,19 @@ fi
rm "$PEP8_REPORT_PATH"
-for to_be_checked in "$PATHS_TO_CHECK"
-do
- pylint --rcfile="$SPARK_ROOT_DIR/pylintrc" $to_be_checked >> "$PYLINT_REPORT_PATH"
-done
-
-if [ "${PIPESTATUS[0]}" -ne 0 ]; then
- lint_status=1
- echo "Pylint checks failed."
- cat "$PYLINT_REPORT_PATH"
-else
- echo "Pylint checks passed."
-fi
-
-rm "$PYLINT_REPORT_PATH"
+# for to_be_checked in "$PATHS_TO_CHECK"
+# do
+# pylint --rcfile="$SPARK_ROOT_DIR/pylintrc" $to_be_checked >> "$PYLINT_REPORT_PATH"
+# done
+
+# if [ "${PIPESTATUS[0]}" -ne 0 ]; then
+# lint_status=1
+# echo "Pylint checks failed."
+# cat "$PYLINT_REPORT_PATH"
+# else
+# echo "Pylint checks passed."
+# fi
+
+# rm "$PYLINT_REPORT_PATH"
exit "$lint_status"