aboutsummaryrefslogtreecommitdiff
path: root/dev
diff options
context:
space:
mode:
Diffstat (limited to 'dev')
-rwxr-xr-xdev/run-tests.py2
-rw-r--r--dev/sparktestsupport/modules.py12
2 files changed, 1 insertions, 13 deletions
diff --git a/dev/run-tests.py b/dev/run-tests.py
index 7b3269752b..2030c4ab23 100755
--- a/dev/run-tests.py
+++ b/dev/run-tests.py
@@ -110,7 +110,7 @@ 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', 'hivecontext-compatibility',
+ ['sql', 'hive', 'mllib', 'examples', 'hive-thriftserver',
'pyspark-sql', 'sparkr', 'pyspark-mllib', 'pyspark-ml']
"""
modules_to_test = set()
diff --git a/dev/sparktestsupport/modules.py b/dev/sparktestsupport/modules.py
index 0d6aa7422a..8e2364d2f7 100644
--- a/dev/sparktestsupport/modules.py
+++ b/dev/sparktestsupport/modules.py
@@ -158,18 +158,6 @@ hive_thriftserver = Module(
)
-hivecontext_compatibility = Module(
- name="hivecontext-compatibility",
- dependencies=[hive],
- source_file_regexes=[
- "sql/hivecontext-compatibility/",
- ],
- sbt_test_goals=[
- "hivecontext-compatibility/test"
- ]
-)
-
-
sketch = Module(
name="sketch",
dependencies=[tags],