Files
mongo/buildscripts/tests/resmoke_validation/BUILD.bazel
Zack Winter 40f6d641f7 SERVER-100631 Add ruff into "bazel run lint" (#32166)
GitOrigin-RevId: 4234e1f4a6e164cfd2ab53cdb7290b238095520f
2025-06-11 14:11:11 +00:00

50 lines
1.1 KiB
Python

load("@poetry//:dependencies.bzl", "dependency")
py_test(
name = "test_suites_configurations",
srcs = ["test_suites_configurations.py"],
visibility = ["//visibility:public"],
deps = [
"//buildscripts/resmokelib",
],
)
py_test(
name = "test_find_suites",
srcs = ["test_find_suites.py"],
visibility = ["//visibility:public"],
deps = [
"//buildscripts/resmokelib",
],
)
py_test(
name = "test_generated_matrix_suites",
srcs = ["test_generated_matrix_suites.py"],
visibility = ["//visibility:public"],
deps = [
"//buildscripts/resmokelib",
"//buildscripts/resmokelib/logging",
],
)
py_test(
name = "test_jstest_tags",
srcs = ["test_jstest_tags.py"],
visibility = ["//visibility:public"],
deps = [
"//buildscripts/idl",
"//buildscripts/resmokelib",
],
)
py_test(
name = "test_matrix_suite_generation",
srcs = ["test_matrix_suite_generation.py"],
visibility = ["//visibility:public"],
deps = [
"//buildscripts/resmokelib",
"//buildscripts/resmokelib/logging",
],
)