Add a 'python' prefix
This commit is contained in:
parent
9feb262454
commit
e3c099e729
20 changed files with 2 additions and 2 deletions
projects/calf/tests/python
20
projects/calf/tests/python/BUILD
Normal file
20
projects/calf/tests/python/BUILD
Normal 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"],
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue