Files
mongo/buildscripts/util/BUILD.bazel
Trevor Guidry b0035c299f SERVER-98555 Switch Jepsen and Antithesis to https cloning (#30435)
GitOrigin-RevId: d7c45fdd00f35bfc02ad12816bef806ba2558a30
2024-12-18 22:01:25 +00:00

41 lines
870 B
Python

load("@poetry//:dependencies.bzl", "dependency")
py_library(
name = "util",
srcs = [
"buildozer_utils.py",
"cedar_report.py",
"cmdutils.py",
"codeowners_utils.py",
"expansions.py",
"fileops.py",
"generate_co_jira_map.py",
"oauth.py",
"read_config.py",
"runcommand.py",
"taskname.py",
"testname.py",
"teststats.py",
"time.py",
],
visibility = ["//visibility:public"],
deps = [
dependency(
"oauthlib",
group = "testing",
),
dependency(
"structlog",
group = "evergreen",
),
dependency(
"pkce",
group = "testing",
),
dependency(
"requests-oauthlib",
group = "testing",
),
],
)