aboutsummaryrefslogtreecommitdiff
path: root/dev/sparktestsupport
diff options
context:
space:
mode:
Diffstat (limited to 'dev/sparktestsupport')
-rw-r--r--dev/sparktestsupport/modules.py24
1 files changed, 1 insertions, 23 deletions
diff --git a/dev/sparktestsupport/modules.py b/dev/sparktestsupport/modules.py
index 65397f1f3e..346452f317 100644
--- a/dev/sparktestsupport/modules.py
+++ b/dev/sparktestsupport/modules.py
@@ -31,7 +31,7 @@ class Module(object):
def __init__(self, name, dependencies, source_file_regexes, build_profile_flags=(), environ={},
sbt_test_goals=(), python_test_goals=(), blacklisted_python_implementations=(),
- test_tags=(), should_run_r_tests=False):
+ should_run_r_tests=False):
"""
Define a new module.
@@ -50,8 +50,6 @@ class Module(object):
:param blacklisted_python_implementations: A set of Python implementations that are not
supported by this module's Python components. The values in this set should match
strings returned by Python's `platform.python_implementation()`.
- :param test_tags A set of tags that will be excluded when running unit tests if the module
- is not explicitly changed.
:param should_run_r_tests: If true, changes in this module will trigger all R tests.
"""
self.name = name
@@ -62,7 +60,6 @@ class Module(object):
self.environ = environ
self.python_test_goals = python_test_goals
self.blacklisted_python_implementations = blacklisted_python_implementations
- self.test_tags = test_tags
self.should_run_r_tests = should_run_r_tests
self.dependent_modules = set()
@@ -88,9 +85,6 @@ sql = Module(
"catalyst/test",
"sql/test",
"hive/test",
- ],
- test_tags=[
- "org.apache.spark.sql.hive.ExtendedHiveTest"
]
)
@@ -404,22 +398,6 @@ ec2 = Module(
)
-yarn = Module(
- name="yarn",
- dependencies=[],
- source_file_regexes=[
- "yarn/",
- "network/yarn/",
- ],
- sbt_test_goals=[
- "yarn/test",
- "network-yarn/test",
- ],
- test_tags=[
- "org.apache.spark.deploy.yarn.ExtendedYarnTest"
- ]
-)
-
# The root module is a dummy module which is used to run all of the tests.
# No other modules should directly depend on this module.
root = Module(