source/projects/proquint/BUILD

17 lines
239 B
Python
Raw Normal View History

2021-08-04 01:04:23 +00:00
py_library(
name = "lib",
srcs = glob(["src/python/**/*.py"]),
imports = [
"src/python",
],
)
py_pytest(
name = "test",
srcs = glob(["test/python/**/*.py"]),
deps = [
":lib",
py_requirement("hypothesis"),
],
)