github.phpd.cn/thought-machine/please@v12.2.0+incompatible/test/cycle/TEST_BUILD (about)

     1  # A set of build targets that test issue #43.
     2  # Due to the nature of how we exercise the issue the test itself cannot be in this package.
     3  
     4  python_library(
     5      name = 'cycle_1',
     6      deps = [':cycle_2'],
     7  )
     8  
     9  python_library(
    10      name = 'cycle_2',
    11      deps = [':cycle_1'],
    12  )
    13  
    14  gentest(
    15      name = 'cycle_test',
    16      labels = ['cycle'],
    17      no_test_output = True,
    18      test_cmd = 'true',
    19      deps = [
    20          ':cycle_1',
    21          ':cycle_2',
    22      ],
    23  )