go.chromium.org/luci@v0.0.0-20240309015107-7cdc2e660f33/lucicfg/testdata/notifiable/tree_closer_notifier_clash.star (about)

     1  luci.tree_closer(
     2      name = "some name",
     3      tree_status_host = "some-tree.example.com",
     4  )
     5  
     6  luci.notifier(
     7      name = "some name",
     8      on_occurrence = ["FAILURE"],
     9  )
    10  
    11  # Expect errors like:
    12  #
    13  # Traceback (most recent call last):
    14  #   //testdata/notifiable/tree_closer_notifier_clash.star: in <toplevel>
    15  #   ...
    16  # Error in add_node: luci.notifiable("some name") is redeclared, previous declaration:
    17  # Traceback (most recent call last):
    18  #   //testdata/notifiable/tree_closer_notifier_clash.star: in <toplevel>
    19  #   ...