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

47 lines
1.1 KiB
Python

load("@poetry//:dependencies.bzl", "dependency")
load("@rules_python//python:defs.bzl", "py_binary", "py_library", "py_test")
py_library(
name = "utils",
srcs = [
"__init__.py",
"archival.py",
"autoloader.py",
"batched_baggage_span_processor.py",
"certs.py",
"check_has_tag.py",
"dictionary.py",
"evergreen_conn.py",
"external_suite.py",
"file_span_exporter.py",
"filesystem.py",
"globstar.py",
"history.py",
"jscomment.py",
"otel_id_generator.py",
"otel_thread_pool_executor.py",
"otel_utils.py",
"queue.py",
"registry.py",
"runtime_recorder.py",
"self_test_fakes.py",
"sharded_cluster_util.py",
],
visibility = ["//visibility:public"],
deps = [
dependency(
"evergreen-py",
group = "testing",
),
dependency(
"boto3",
group = "aws",
),
dependency(
"botocore",
group = "aws",
),
"//buildscripts/util:download_utils",
],
)