Skip to content

Commit a09d0d4

Browse files
committed
fix tasks
1 parent 705d9c2 commit a09d0d4

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

.evergreen/generated_configs/tasks.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ tasks:
1212
- name: test-aws-lambda-deployed
1313
commands:
1414
- func: assume ec2 role
15-
- func: setup atlas
1615
- func: run tests
1716
vars:
1817
TEST_NAME: aws_lambda
@@ -1167,7 +1166,6 @@ tasks:
11671166
- name: test-search-index-helpers
11681167
commands:
11691168
- func: assume ec2 role
1170-
- func: setup atlas
11711169
- func: run server
11721170
vars:
11731171
TEST_NAME: index_management

.evergreen/scripts/generate_config.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -930,24 +930,22 @@ def _create_ocsp_task(algo, variant, server_type, base_task_name):
930930

931931
def 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

942941
def 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

Comments
 (0)