mirror of https://github.com/kubernetes/kops.git
				
				
				
			
		
			
				
	
	
		
			33 lines
		
	
	
		
			724 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			724 B
		
	
	
	
		
			Python
		
	
	
	
package(default_visibility = ["//visibility:public"])
 | 
						|
 | 
						|
# this does not work, and I am uncertain we will need it
 | 
						|
#sh_test(
 | 
						|
#    name = "verify-packages",
 | 
						|
#    srcs = ["verify-packages.sh"],
 | 
						|
#    tags = ["manual"],
 | 
						|
#)
 | 
						|
 | 
						|
# TODO: this does not work: we need to tell the task about the sources
 | 
						|
sh_test(
 | 
						|
    name = "verify-boilerplate",
 | 
						|
    srcs = ["verify-boilerplate.sh"],
 | 
						|
    tags = ["manual"],
 | 
						|
)
 | 
						|
 | 
						|
# TODO: this does not work: we need to tell the task about the sources
 | 
						|
sh_test(
 | 
						|
    name = "verify-gofmt",
 | 
						|
    srcs = ["verify-gofmt.sh"],
 | 
						|
    tags = ["manual"],
 | 
						|
)
 | 
						|
 | 
						|
test_suite(
 | 
						|
    name = "verify-all",
 | 
						|
    tags = ["manual"],
 | 
						|
    tests = [
 | 
						|
        "verify-boilerplate",
 | 
						|
        #"verify-packages",
 | 
						|
        "verify-gofmt",
 | 
						|
    ],
 | 
						|
)
 |