Add a 'python' prefix

This commit is contained in:
Reid 'arrdem' McKenzie 2021-04-09 01:37:24 -06:00
commit e3c099e729
20 changed files with 2 additions and 2 deletions
projects/calf/tests/python

View file

@ -0,0 +1,20 @@
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"],
)