source/projects/calf/tests/python/BUILD.bazel
Reid 'arrdem' McKenzie 45da5b603d BUILD.bazel
2024-02-06 10:01:19 -07:00

20 lines
334 B
Text

py_library(
name = "conftest",
srcs = [
"conftest.py"
],
imports = [
"."
],
)
py_pytest(
name = "test",
srcs = glob(["*.py"]),
deps = [
"//projects/calf:lib",
":conftest",
py_requirement("pytest-cov"),
],
args = ["--cov-report", "term", "--cov=calf"],
)