mongo/buildscripts/resmoke_proxy/BUILD.bazel
Sean Lyons b270115356 SERVER-126501: Add bazel targets for buildscripts tests (#53703)
GitOrigin-RevId: eeec1eaf457d23e5fd9e67dd10c171f65df0899b
2026-05-15 17:04:02 +00:00

19 lines
396 B
Python

load("@poetry//:dependencies.bzl", "dependency")
load("@rules_python//python:defs.bzl", "py_binary")
py_binary(
name = "resmoke_proxy",
srcs = [
"__init__.py",
"resmoke_proxy.py",
],
visibility = ["//visibility:public"],
deps = [
"//buildscripts:resmoke",
dependency(
"inject",
group = "evergreen",
),
],
)