source/projects/proquint/BUILD
Reid 'arrdem' McKenzie abc4b8dddb Get proquint documented
2021-08-03 19:04:23 -06:00

16 lines
239 B
Text

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"),
],
)