aboutsummaryrefslogtreecommitdiff
path: root/dev/run-tests.py
diff options
context:
space:
mode:
authorYin Huai <yhuai@databricks.com>2016-04-22 17:50:24 -0700
committerJosh Rosen <joshrosen@databricks.com>2016-04-22 17:50:24 -0700
commit7dde1da949d430c20a128bc3c6e5fe5c0271da11 (patch)
treee09b60dff207f1f2bd6bcf04338cc65fb4075fc4 /dev/run-tests.py
parentd7d0cad0ad7667c0e09ae01601ee0e4d0b09963c (diff)
downloadspark-7dde1da949d430c20a128bc3c6e5fe5c0271da11.tar.gz
spark-7dde1da949d430c20a128bc3c6e5fe5c0271da11.tar.bz2
spark-7dde1da949d430c20a128bc3c6e5fe5c0271da11.zip
[SPARK-14807] Create a compatibility module
## What changes were proposed in this pull request? This PR creates a compatibility module in sql (called `hive-1-x-compatibility`), which will host HiveContext in Spark 2.0 (moving HiveContext to here will be done separately). This module is not included in assembly because only users who still want to access HiveContext need it. ## How was this patch tested? I manually tested `sbt/sbt -Phive package` and `mvn -Phive package -DskipTests`. Author: Yin Huai <yhuai@databricks.com> Closes #12580 from yhuai/compatibility.
Diffstat (limited to 'dev/run-tests.py')
-rwxr-xr-xdev/run-tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/run-tests.py b/dev/run-tests.py
index cbe347274e..291f821c7f 100755
--- a/dev/run-tests.py
+++ b/dev/run-tests.py
@@ -110,8 +110,8 @@ def determine_modules_to_test(changed_modules):
['graphx', 'examples']
>>> x = [x.name for x in determine_modules_to_test([modules.sql])]
>>> x # doctest: +NORMALIZE_WHITESPACE
- ['sql', 'hive', 'mllib', 'examples', 'hive-thriftserver', 'pyspark-sql', 'sparkr',
- 'pyspark-mllib', 'pyspark-ml']
+ ['sql', 'hive', 'mllib', 'examples', 'hive-thriftserver', 'hivecontext-compatibility',
+ 'pyspark-sql', 'sparkr', 'pyspark-mllib', 'pyspark-ml']
"""
modules_to_test = set()
for module in changed_modules: