Skip to content

Commit

Permalink
releng: add generate_tests_test.py target
Browse files Browse the repository at this point in the history
prevent these tests from getting broken again by running them as part of
bazel test //... which is currently merge-blocking for this repo
  • Loading branch information
spiffxp committed Jul 26, 2021
1 parent 60a95fe commit f2cf186
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions releng/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@ py_binary(
deps = [requirement("ruamel.yaml")],
)

py_test(
name = "generate_tests_test",
srcs = [
"generate_tests.py",
"generate_tests_test.py",
],
python_version = "PY3",
deps = [requirement("ruamel.yaml")],
)

py_binary(
name = "prepare_release_branch",
srcs = ["prepare_release_branch.py"],
Expand Down

0 comments on commit f2cf186

Please sign in to comment.