mirror of
https://github.com/bazel-contrib/bazel-lib
synced 2024-11-26 13:30:30 +00:00
13 lines
291 B
Python
13 lines
291 B
Python
"Test rule that always fails and prints a message"
|
|
|
|
def _fail_with_message_test_impl(ctx):
|
|
fail(ctx.attr.message)
|
|
|
|
fail_with_message_test = rule(
|
|
attrs = {
|
|
"message": attr.string(mandatory = True),
|
|
},
|
|
implementation = _fail_with_message_test_impl,
|
|
test = True,
|
|
)
|