aboutsummaryrefslogtreecommitdiff
path: root/dev/run-tests.py
diff options
context:
space:
mode:
authorYin Huai <yhuai@databricks.com>2015-07-27 15:49:42 -0700
committerYin Huai <yhuai@databricks.com>2015-07-27 15:49:42 -0700
commitdafe8d857dff4c61981476282cbfe11f5c008078 (patch)
tree1551915a16edaaa0697d710fb426f15446b4b1af /dev/run-tests.py
parentab625956616664c2b4861781a578311da75a9ae4 (diff)
downloadspark-dafe8d857dff4c61981476282cbfe11f5c008078.tar.gz
spark-dafe8d857dff4c61981476282cbfe11f5c008078.tar.bz2
spark-dafe8d857dff4c61981476282cbfe11f5c008078.zip
[SPARK-9385] [PYSPARK] Enable PEP8 but disable installing pylint.
Instead of disabling all python style check, we should enable PEP8. So, this PR just comments out the part installing pylint. Author: Yin Huai <yhuai@databricks.com> Closes #7704 from yhuai/SPARK-9385 and squashes the following commits: 0056359 [Yin Huai] Enable PEP8 but disable installing pylint.
Diffstat (limited to 'dev/run-tests.py')
-rwxr-xr-xdev/run-tests.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/dev/run-tests.py b/dev/run-tests.py
index d1cb66860b..1f0d218514 100755
--- a/dev/run-tests.py
+++ b/dev/run-tests.py
@@ -198,9 +198,8 @@ def run_scala_style_checks():
def run_python_style_checks():
- # set_title_and_block("Running Python style checks", "BLOCK_PYTHON_STYLE")
- # run_cmd([os.path.join(SPARK_HOME, "dev", "lint-python")])
- pass
+ set_title_and_block("Running Python style checks", "BLOCK_PYTHON_STYLE")
+ run_cmd([os.path.join(SPARK_HOME, "dev", "lint-python")])
def build_spark_documentation():