15 lines
243 B
Python
15 lines
243 B
Python
py_library(
|
|
name = "datalog",
|
|
srcs = glob(["src/python/**/*.py"]),
|
|
imports = [
|
|
"src/python",
|
|
]
|
|
)
|
|
|
|
py_pytest(
|
|
name = "test_datalog",
|
|
srcs = glob(["test/python/**/*.py"]),
|
|
deps = [
|
|
":datalog",
|
|
]
|
|
)
|