databuild/BUILD.bazel
Stuart Axelbrooke 6f2408a3ee
Some checks are pending
/ setup (push) Waiting to run
lay groundwork for python dsl
2025-07-30 07:01:46 -07:00

28 lines
680 B
Python

# Python Deps
load("@rules_python//python:pip.bzl", "compile_pip_requirements")
filegroup(
name = "jq",
srcs = ["//databuild/runtime:jq"],
visibility = ["//visibility:public"],
)
# Export the E2E test runner script
exports_files(["run_e2e_tests.sh"])
# End-to-End Test Runner
sh_binary(
name = "run_e2e_tests",
srcs = ["run_e2e_tests.sh"],
data = [
"//tests/end_to_end:test_utils",
],
visibility = ["//visibility:public"],
)
# `bazel run //:requirements.update` will regenerate the requirements_txt file
compile_pip_requirements(
name = "requirements",
src = "requirements.in",
requirements_txt = "requirements_lock.txt",
)