go.chromium.org/luci@v0.0.0-20240309015107-7cdc2e660f33/lucicfg/testdata/errors/list_view_orphan_entry.star (about) 1 luci.project( 2 name = "project", 3 buildbucket = "cr-buildbucket.appspot.com", 4 milo = "luci-milo.appspot.com", 5 swarming = "chromium-swarm.appspot.com", 6 ) 7 8 luci.bucket(name = "ci") 9 10 luci.recipe( 11 name = "main/recipe", 12 cipd_package = "recipe/bundles/main", 13 ) 14 15 luci.builder( 16 name = "b", 17 bucket = "ci", 18 executable = "main/recipe", 19 ) 20 21 luci.list_view_entry("b") 22 23 # Expect errors like: 24 # 25 # Traceback (most recent call last): 26 # //testdata/errors/list_view_orphan_entry.star: in <toplevel> 27 # ... 28 # Error: luci.list_view_entry("b") is not added to any view, either remove or comment it out