databuild/examples/app_reviews/BUILD.bazel
2025-04-17 15:53:55 -07:00

19 lines
363 B
Python

load("@databuild//:rules.bzl", "databuild_job")
databuild_job(
name = "test_job",
configure = ":test_job_configure",
execute = ":test_job_execute",
)
py_binary(
name = "test_job_configure",
srcs = ["configure.py"],
main = "configure.py",
)
py_binary(
name = "test_job_execute",
srcs = ["execute.py"],
main = "execute.py",
)