source/projects/flowmetal/test/python/BUILD

21 lines
344 B
Python
Raw Normal View History

2021-04-09 07:38:49 +00:00
py_library(
name = "conftest",
srcs = [
"conftest.py"
],
imports = [
"."
],
)
py_pytest(
name = "test",
srcs = glob(["*.py"]),
deps = [
"//projects/flowmetal:lib",
":conftest",
py_requirement("pytest-cov"),
],
args = ["--cov-report", "term", "--cov=flowmetal"],
)