Files
mongo/buildscripts/tests/BUILD.bazel
Andrew Bradshaw f4644578e0 SERVER-120217 Update to using rules python (#48943)
GitOrigin-RevId: 4684e8f134d1fff534747129566fed89a4f96528
2026-03-06 01:52:51 +00:00

28 lines
775 B
Python

load("@poetry//:dependencies.bzl", "dependency")
load("//bazel:mongo_script_rules.bzl", "mongo_toolchain_py_cxx_test")
load("@rules_python//python:defs.bzl", "py_library")
mongo_toolchain_py_cxx_test(
name = "test_clang_tidy",
srcs = [
"test_clang_tidy.py",
],
main = "test_clang_tidy.py",
visibility = ["//visibility:public"],
deps = [
"//buildscripts:clang_tidy_lib",
"//buildscripts:mongo_toolchain",
dependency(
"pyyaml",
group = "core",
),
],
)
# TODO(SERVER-105817): The following library is autogenerated, please split these out into individual python targets
py_library(
name = "all_python_files",
srcs = glob(["*.py"]),
visibility = ["//visibility:public"],
)