You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
355 B
11 lines
355 B
# Run this target to generate and open an HTML coverage report.
|
|
# Takes the same arguments as `bazel coverage`, but after a double dash (`--`).
|
|
# The default is to run `bazel coverage //...`, which accumulates the coverage of all tests.
|
|
sh_binary(
|
|
name = "coverage",
|
|
srcs = ["coverage.sh"],
|
|
data = [
|
|
"@genhtml//file:genhtml",
|
|
],
|
|
)
|