source/projects/calf/tests/python/BUILD
Reid 'arrdem' McKenzie e3c099e729 Add a 'python' prefix
2021-04-09 01:37:24 -06: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"],
)