fix: merge user tags in stardoc_with_diff_test (#746)

This commit is contained in:
Greg Magolan 2024-02-05 17:43:58 -08:00 committed by GitHub
parent d07ed55315
commit 71a8052589
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -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(

View File

@ -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
)