From 5eba36adae636289f375abdf9b18e72b60829c16 Mon Sep 17 00:00:00 2001 From: Dongjoon Hyun Date: Mon, 22 Apr 2019 23:15:17 -0700 Subject: [PATCH] [SPARK-27544][PYTHON][TEST] Fix Python test script to work on Scala-2.12 build --- python/run-tests.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/python/run-tests.py b/python/run-tests.py index 921fdc9a0c91c..5059905e25bc4 100755 --- a/python/run-tests.py +++ b/python/run-tests.py @@ -59,9 +59,7 @@ def print_red(text): LOGGER = logging.getLogger() # Find out where the assembly jars are located. -# Later, add back 2.12 to this list: -# for scala in ["2.11", "2.12"]: -for scala in ["2.11"]: +for scala in ["2.11", "2.12"]: build_dir = os.path.join(SPARK_HOME, "assembly", "target", "scala-" + scala) if os.path.isdir(build_dir): SPARK_DIST_CLASSPATH = os.path.join(build_dir, "jars", "*")