20 lines
334 B
Python
20 lines
334 B
Python
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"],
|
|
)
|