source/projects/yamlschema/BUILD
2021-05-17 14:38:13 -06:00

19 lines
333 B
Text

py_library(
name="yamlschema",
srcs=glob(["src/python/**/*.py"]),
imports=[
"src/python",
],
deps=[
py_requirement("PyYAML"),
],
)
py_pytest(
name="test_yamlschema",
srcs=glob(["test/python/test_*.py"]),
data=glob(["*.json", "*.yaml"]),
deps=[
":yamlschema",
],
)