github.phpd.cn/thought-machine/please@v12.2.0+incompatible/test/completions/BUILD (about) 1 # A little suite of targets that we use to test completions. 2 3 genrule( 4 name = 'library', 5 outs = ['lib.txt'], 6 cmd = 'touch $OUT', 7 ) 8 9 genrule( 10 name = 'binary', 11 outs = ['bin.sh'], 12 binary = True, 13 cmd = 'touch $OUT', 14 ) 15 16 gentest( 17 name = 'test', 18 outs = ['test.sh'], 19 cmd = 'touch $OUT', 20 labels = ['manual'], 21 test_cmd = 'true', 22 )