You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test: add bazel targets to run all unit tests for each package
Adds a new `:unit_tests` target to each top-level package we publish.
This target will run all unit tests under that package. Also adds a
`:unit_tests` target under `//src` that runs the unit tests for all
packages. Currently `blaze test //src:unit_tests` and `blaze test
//src/...` should be equivalent. However, in a followup PR I plan to
move the e2e tests under their respective components directories. The
e2e tests will be excluded from `//src:unit_tests` so we'll be able to
run `bazel test //src:unit_tests`, `bazel test //src:e2e_tests`, and
`bazel test //src/...` to run all unit tests, all e2e tests, and all
tests respectively.
0 commit comments