@@ -930,24 +930,22 @@ def _create_ocsp_task(algo, variant, server_type, base_task_name):
930930
931931def create_aws_lambda_tasks ():
932932 assume_func = FunctionCall (func = "assume ec2 role" )
933- atlas_func = FunctionCall (func = "setup atlas" )
934933 vars = dict (TEST_NAME = "aws_lambda" )
935934 test_func = FunctionCall (func = "run tests" , vars = vars )
936935 task_name = "test-aws-lambda-deployed"
937936 tags = ["aws_lambda" ]
938- commands = [assume_func , atlas_func , test_func ]
937+ commands = [assume_func , test_func ]
939938 return [EvgTask (name = task_name , tags = tags , commands = commands )]
940939
941940
942941def create_search_index_tasks ():
943942 assume_func = FunctionCall (func = "assume ec2 role" )
944- atlas_func = FunctionCall (func = "setup atlas" )
945943 server_func = FunctionCall (func = "run server" , vars = dict (TEST_NAME = "index_management" ))
946944 vars = dict (TEST_NAME = "index_management" )
947945 test_func = FunctionCall (func = "run tests" , vars = vars )
948946 task_name = "test-search-index-helpers"
949947 tags = ["index_management" ]
950- commands = [assume_func , atlas_func , server_func , test_func ]
948+ commands = [assume_func , server_func , test_func ]
951949 return [EvgTask (name = task_name , tags = tags , commands = commands )]
952950
953951
0 commit comments