Skip to content

Commit 1fd489c

Browse files
committed
Enable Hive in PySpark test deps.
1 parent 1154eb4 commit 1fd489c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/run-tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def get_spark_dist_classpath():
5858
original_working_dir = os.getcwd()
5959
os.chdir(SPARK_HOME)
6060
cp = subprocess_check_output(
61-
["./build/sbt", "export assembly/managedClasspath"], universal_newlines=True)
61+
["./build/sbt", "-Phive", "export assembly/managedClasspath"], universal_newlines=True)
6262
cp = cp.strip().split("\n")[-1]
6363
os.chdir(original_working_dir)
6464
return cp

0 commit comments

Comments
 (0)