File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -404,7 +404,9 @@ def ts_project(
404404 name = transitive_typecheck_target_name ,
405405 srcs = [name ],
406406 output_group = "transitive_typecheck" ,
407- ** common_kwargs
407+ tags = ["manual" ] + common_kwargs .get ("tags" , []),
408+ visibility = common_kwargs .get ("visibility" ),
409+ testonly = common_kwargs .get ("testonly" ),
408410 )
409411
410412 # Ensures the typecheck target gets built under `bazel test --build_tests_only`
@@ -419,7 +421,7 @@ def ts_project(
419421 build_test (
420422 name = transitive_typecheck_test_target_name ,
421423 targets = [transitive_typecheck_target_name ],
422- tags = common_kwargs .get ("tags" ),
424+ tags = [ "manual" ] + common_kwargs .get ("tags" , [] ),
423425 size = "small" ,
424426 visibility = common_kwargs .get ("visibility" ),
425427 )
You can’t perform that action at this time.
0 commit comments