Skip to content

Commit

Permalink
pw_rpc: Add missing Bazel test rules
Browse files Browse the repository at this point in the history
Change-Id: I79cc9ec5ceadfc8ca4a4bce8bbb6e9e3a741553a
Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/230691
Pigweed-Auto-Submit: Taylor Cramer <[email protected]>
Commit-Queue: Taylor Cramer <[email protected]>
Lint: Lint 🤖 <[email protected]>
Reviewed-by: Armando Montanez <[email protected]>
  • Loading branch information
cramertj authored and CQ Bot Account committed Aug 19, 2024
1 parent 8b659f0 commit 0b21c84
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions pw_rpc/py/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -185,3 +185,42 @@ pw_py_test(
"//pw_status/py:pw_status",
],
)

pw_py_test(
name = "console_tools_test",
size = "small",
srcs = [
"tests/console_tools/console_tools_test.py",
],
data = [
"@com_google_protobuf//:protoc",
],
env = {
"PROTOC": "$(location @com_google_protobuf//:protoc)",
},
deps = [
":pw_rpc",
],
)

pw_py_test(
name = "functions_test",
size = "small",
srcs = [
"tests/console_tools/functions_test.py",
],
deps = [
":pw_rpc",
],
)

pw_py_test(
name = "watchdog_test",
size = "small",
srcs = [
"tests/console_tools/watchdog_test.py",
],
deps = [
":pw_rpc",
],
)

0 comments on commit 0b21c84

Please sign in to comment.