diff --git a/rules/build_test.bzl b/rules/build_test.bzl index b2a9366..34c8657 100644 --- a/rules/build_test.bzl +++ b/rules/build_test.bzl @@ -39,7 +39,7 @@ def build_test(name, targets, **kwargs): Args: name: The name of the test rule. targets: A list of targets to ensure build. - kwargs: The common attributes for tests. + **kwargs: The common attributes for tests. """ if len(targets) == 0: fail("targets must be non-empty", "targets") diff --git a/tests/build_test_tests.bzl b/tests/build_test_tests.bzl index df3671f..d4f6c88 100644 --- a/tests/build_test_tests.bzl +++ b/tests/build_test_tests.bzl @@ -12,6 +12,8 @@ # See the License for the specific language governing permissions and # limitations under the License. +"""Unit tests for build_test.bzl.""" + load("//rules:build_test.bzl", "build_test") def build_test_test_suite():