aboutsummaryrefslogtreecommitdiff
path: root/dev/sparktestsupport
diff options
context:
space:
mode:
authorzsxwing <zsxwing@gmail.com>2015-07-30 00:46:36 -0700
committerTathagata Das <tathagata.das1565@gmail.com>2015-07-30 00:46:36 -0700
commit76f2e393a5fad0db8b56c4b8dad5ef686bf140a4 (patch)
tree130545e84ef33ea4e7a6c720ff8798b11565d889 /dev/sparktestsupport
parent1221849f91739454b8e495889cba7498ba8beea7 (diff)
downloadspark-76f2e393a5fad0db8b56c4b8dad5ef686bf140a4.tar.gz
spark-76f2e393a5fad0db8b56c4b8dad5ef686bf140a4.tar.bz2
spark-76f2e393a5fad0db8b56c4b8dad5ef686bf140a4.zip
[SPARK-9335] [TESTS] Enable Kinesis tests only when files in extras/kinesis-asl are changed
Author: zsxwing <zsxwing@gmail.com> Closes #7711 from zsxwing/SPARK-9335-test and squashes the following commits: c13ec2f [zsxwing] environs -> environ 69c2865 [zsxwing] Merge remote-tracking branch 'origin/master' into SPARK-9335-test ef84a08 [zsxwing] Revert "Modify the Kinesis project to trigger ENABLE_KINESIS_TESTS" f691028 [zsxwing] Modify the Kinesis project to trigger ENABLE_KINESIS_TESTS 7618205 [zsxwing] Enable Kinesis tests only when files in extras/kinesis-asl are changed
Diffstat (limited to 'dev/sparktestsupport')
-rw-r--r--dev/sparktestsupport/modules.py14
1 files changed, 12 insertions, 2 deletions
diff --git a/dev/sparktestsupport/modules.py b/dev/sparktestsupport/modules.py
index 3073d489ba..030d982e99 100644
--- a/dev/sparktestsupport/modules.py
+++ b/dev/sparktestsupport/modules.py
@@ -29,7 +29,7 @@ class Module(object):
changed.
"""
- def __init__(self, name, dependencies, source_file_regexes, build_profile_flags=(),
+ def __init__(self, name, dependencies, source_file_regexes, build_profile_flags=(), environ={},
sbt_test_goals=(), python_test_goals=(), blacklisted_python_implementations=(),
should_run_r_tests=False):
"""
@@ -43,6 +43,8 @@ class Module(object):
filename strings.
:param build_profile_flags: A set of profile flags that should be passed to Maven or SBT in
order to build and test this module (e.g. '-PprofileName').
+ :param environ: A dict of environment variables that should be set when files in this
+ module are changed.
:param sbt_test_goals: A set of SBT test goals for testing this module.
:param python_test_goals: A set of Python test goals for testing this module.
:param blacklisted_python_implementations: A set of Python implementations that are not
@@ -55,6 +57,7 @@ class Module(object):
self.source_file_prefixes = source_file_regexes
self.sbt_test_goals = sbt_test_goals
self.build_profile_flags = build_profile_flags
+ self.environ = environ
self.python_test_goals = python_test_goals
self.blacklisted_python_implementations = blacklisted_python_implementations
self.should_run_r_tests = should_run_r_tests
@@ -126,15 +129,22 @@ streaming = Module(
)
+# Don't set the dependencies because changes in other modules should not trigger Kinesis tests.
+# Kinesis tests depends on external Amazon kinesis service. We should run these tests only when
+# files in streaming_kinesis_asl are changed, so that if Kinesis experiences an outage, we don't
+# fail other PRs.
streaming_kinesis_asl = Module(
name="kinesis-asl",
- dependencies=[streaming],
+ dependencies=[],
source_file_regexes=[
"extras/kinesis-asl/",
],
build_profile_flags=[
"-Pkinesis-asl",
],
+ environ={
+ "ENABLE_KINESIS_TESTS": "1"
+ },
sbt_test_goals=[
"kinesis-asl/test",
]