Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions buf/defs.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,11 @@ load("//buf/internal:lint.bzl", _buf_lint_test = "buf_lint_test")
load("//buf/internal:push.bzl", _buf_push = "buf_push")
load("//buf/internal:repo.bzl", _buf_dependencies = "buf_dependencies")

buf_breaking_test = _buf_breaking_test
buf_lint_test = _buf_lint_test
buf_dependencies = _buf_dependencies
buf_push = _buf_push

def buf_breaking_test(timeout = "short", **kwargs):
_buf_breaking_test(timeout = timeout, **kwargs)

def buf_lint_test(timeout = "short", **kwargs):
_buf_lint_test(timeout = timeout, **kwargs)