Skip to content

Commit d59c9a0

Browse files
committed
bazel: unfied test suites
add common test suites across repositories
1 parent 98df4c9 commit d59c9a0

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

BUILD

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,3 +104,23 @@ test_suite(
104104
tests = ["//src/cpp/tests:bm_kvs_cpp"],
105105
visibility = ["//visibility:public"],
106106
)
107+
108+
test_suite(
109+
name = "unit_tests",
110+
tests = [
111+
# C++
112+
"test_kvs_cpp",
113+
# Rust
114+
"//src/rust/rust_kvs:tests",
115+
],
116+
visibility = ["//visibility:public"],
117+
)
118+
119+
test_suite(
120+
name = "cit_tests",
121+
tests = [
122+
"//tests/python_test_cases:cit_cpp",
123+
"//tests/python_test_cases:cit_rust",
124+
],
125+
visibility = ["//visibility:public"],
126+
)

0 commit comments

Comments
 (0)