fix: merge user tags in stardoc_with_diff_test (#746)
This commit is contained in:
parent
d07ed55315
commit
71a8052589
|
@ -23,6 +23,7 @@ stardoc_with_diff_test(
|
|||
stardoc_with_diff_test(
|
||||
name = "docs",
|
||||
bzl_library_target = "//lib:docs",
|
||||
tags = ["some_random_tag_for_testing_pr746_regression"],
|
||||
)
|
||||
|
||||
stardoc_with_diff_test(
|
||||
|
|
|
@ -30,7 +30,7 @@ def stardoc_with_diff_test(
|
|||
out = name + "-docgen.md",
|
||||
input = bzl_library_target + ".bzl",
|
||||
deps = [bzl_library_target],
|
||||
tags = ["package:" + native.package_name()], # Tag the package name which will help us reconstruct the write_source_files label in update_docs
|
||||
tags = kwargs.pop("tags", []) + ["package:" + native.package_name()], # Tag the package name which will help us reconstruct the write_source_files label in update_docs
|
||||
target_compatible_with = target_compatible_with,
|
||||
**kwargs
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue