aboutsummaryrefslogtreecommitdiff
path: root/dev/run-tests.py
diff options
context:
space:
mode:
authorShixiong Zhu <shixiong@databricks.com>2016-06-14 19:45:11 -0700
committerShixiong Zhu <shixiong@databricks.com>2016-06-14 19:45:11 -0700
commit0ee9fd9e528206a5edfb2cc4a56538250b428aaf (patch)
treeb83d6da891451905bba27b7cba79975fc2227ac3 /dev/run-tests.py
parent63e0aebe22ba41c636ecaddd8647721d7690a1ec (diff)
downloadspark-0ee9fd9e528206a5edfb2cc4a56538250b428aaf.tar.gz
spark-0ee9fd9e528206a5edfb2cc4a56538250b428aaf.tar.bz2
spark-0ee9fd9e528206a5edfb2cc4a56538250b428aaf.zip
[SPARK-15935][PYSPARK] Fix a wrong format tag in the error message
## What changes were proposed in this pull request? A follow up PR for #13655 to fix a wrong format tag. ## How was this patch tested? Jenkins unit tests. Author: Shixiong Zhu <shixiong@databricks.com> Closes #13665 from zsxwing/fix.
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 2030c4ab23..dcf1be9d95 100755
--- a/dev/run-tests.py
+++ b/dev/run-tests.py
@@ -335,7 +335,7 @@ def build_spark_maven(hadoop_version):
def build_spark_sbt(hadoop_version):
# Enable all of the profiles for the build:
build_profiles = get_hadoop_profiles(hadoop_version) + modules.root.build_profile_flags
- sbt_goals = ["package",
+ sbt_goals = ["test:package", # Build test jars as some tests depend on them
"streaming-kafka-0-8-assembly/assembly",
"streaming-flume-assembly/assembly",
"streaming-kinesis-asl-assembly/assembly"]