16 lines
239 B
Python
16 lines
239 B
Python
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"),
|
|
],
|
|
)
|