mirror of https://github.com/mongodb/mongo
70 lines
1.9 KiB
Python
70 lines
1.9 KiB
Python
load("@poetry//:dependencies.bzl", "dependency")
|
|
|
|
py_library(
|
|
name = "resmokelib",
|
|
srcs = [
|
|
"__init__.py",
|
|
"cli.py",
|
|
"config.py",
|
|
"configure_resmoke.py",
|
|
"errors.py",
|
|
"flags.py",
|
|
"multiversionconstants.py",
|
|
"multiversionsetupconstants.py",
|
|
"parser.py",
|
|
"plugin.py",
|
|
"reportfile.py",
|
|
"selector.py",
|
|
"sighandler.py",
|
|
"suite_hierarchy.py",
|
|
"suitesconfig.py",
|
|
],
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//buildscripts/idl",
|
|
"//buildscripts/resmokelib/core",
|
|
"//buildscripts/resmokelib/discovery",
|
|
"//buildscripts/resmokelib/extensions",
|
|
"//buildscripts/resmokelib/generate_fcv_constants",
|
|
"//buildscripts/resmokelib/generate_fuzz_config",
|
|
"//buildscripts/resmokelib/hang_analyzer",
|
|
"//buildscripts/resmokelib/logging",
|
|
"//buildscripts/resmokelib/powercycle",
|
|
"//buildscripts/resmokelib/setup_multiversion",
|
|
"//buildscripts/resmokelib/testing",
|
|
"//buildscripts/resmokelib/utils",
|
|
"//buildscripts/util",
|
|
dependency(
|
|
"psutil",
|
|
group = "build-metrics",
|
|
),
|
|
dependency(
|
|
"pyyaml",
|
|
group = "core",
|
|
),
|
|
dependency(
|
|
"gitpython",
|
|
group = "evergreen",
|
|
),
|
|
dependency(
|
|
"opentelemetry-api",
|
|
group = "testing",
|
|
),
|
|
dependency(
|
|
"opentelemetry-sdk",
|
|
group = "testing",
|
|
),
|
|
dependency(
|
|
"opentelemetry-exporter-otlp-proto-common",
|
|
group = "testing",
|
|
),
|
|
] + select({
|
|
"@platforms//cpu:s390x": [],
|
|
"@platforms//cpu:ppc": [],
|
|
"//conditions:default": [dependency(
|
|
"opentelemetry-exporter-otlp-proto-grpc",
|
|
group = "testing",
|
|
)],
|
|
}),
|
|
)
|