aboutsummaryrefslogtreecommitdiff
path: root/dev/run-tests.py
diff options
context:
space:
mode:
authorJosh Rosen <joshrosen@databricks.com>2015-06-27 23:07:20 -0700
committerJosh Rosen <joshrosen@databricks.com>2015-06-27 23:07:20 -0700
commit42db3a1c2fb6db61e01756be7fe88c4110ae638e (patch)
tree379b9cfeda16d74a841a75f1bb98c3a7ab7af227 /dev/run-tests.py
parent40648c56cdaa52058a4771082f8f44a2d8e5a1ec (diff)
downloadspark-42db3a1c2fb6db61e01756be7fe88c4110ae638e.tar.gz
spark-42db3a1c2fb6db61e01756be7fe88c4110ae638e.tar.bz2
spark-42db3a1c2fb6db61e01756be7fe88c4110ae638e.zip
[HOTFIX] Fix pull request builder bug in #6967
Diffstat (limited to 'dev/run-tests.py')
-rwxr-xr-xdev/run-tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/run-tests.py b/dev/run-tests.py
index c51b0d3010..3533e0c857 100755
--- a/dev/run-tests.py
+++ b/dev/run-tests.py
@@ -365,7 +365,7 @@ def run_python_tests(test_modules):
command = [os.path.join(SPARK_HOME, "python", "run-tests")]
if test_modules != [modules.root]:
- command.append("--modules=%s" % ','.join(m.name for m in modules))
+ command.append("--modules=%s" % ','.join(m.name for m in test_modules))
run_cmd(command)