Skip to content

Commit 8a32764

Browse files
break out more modules
Co-authored-by: Thomas Chow <[email protected]> Co-authored-by: Thomas Chow <[email protected]>
1 parent fdbf8ec commit 8a32764

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

spark/BUILD.bazel

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,36 @@ scala_test_suite(
182182
deps = test_deps + [":test_lib"],
183183
)
184184

185+
scala_test_suite(
186+
name = "groupby_test",
187+
srcs = glob(["src/test/scala/ai/chronon/spark/test/groupby/*.scala"]),
188+
data = glob(["spark/src/test/resources/**/*"]),
189+
# defined in prelude_bazel file
190+
jvm_flags = _JVM_FLAGS_FOR_ACCESSING_BASE_JAVA_CLASSES,
191+
visibility = ["//visibility:public"],
192+
deps = test_deps + [":test_lib"],
193+
)
194+
195+
scala_test_suite(
196+
name = "join_test",
197+
srcs = glob(["src/test/scala/ai/chronon/spark/test/join/*.scala"]),
198+
data = glob(["spark/src/test/resources/**/*"]),
199+
# defined in prelude_bazel file
200+
jvm_flags = _JVM_FLAGS_FOR_ACCESSING_BASE_JAVA_CLASSES,
201+
visibility = ["//visibility:public"],
202+
deps = test_deps + [":test_lib"],
203+
)
204+
205+
scala_test_suite(
206+
name = "bootstrap_test",
207+
srcs = glob(["src/test/scala/ai/chronon/spark/test/bootstrap/*.scala"]),
208+
data = glob(["spark/src/test/resources/**/*"]),
209+
# defined in prelude_bazel file
210+
jvm_flags = _JVM_FLAGS_FOR_ACCESSING_BASE_JAVA_CLASSES,
211+
visibility = ["//visibility:public"],
212+
deps = test_deps + [":test_lib"],
213+
)
214+
185215
jvm_binary(
186216
name = "spark_assembly",
187217
deploy_env = ["//tools/build_rules/spark:spark"],

0 commit comments

Comments
 (0)