File tree Expand file tree Collapse file tree 2 files changed +30
-1
lines changed Expand file tree Collapse file tree 2 files changed +30
-1
lines changed Original file line number Diff line number Diff line change 1
1
tasks :
2
+ # Kms tests
3
+ - name : test-gcp
4
+ commands :
5
+ - func : run tests
6
+ vars :
7
+ TEST_NAME : kms
8
+ SUB_TEST_NAME : gcp
9
+ - name : test-gcp-fail
10
+ commands :
11
+ - func : bootstrap mongo-orchestration
12
+ - func : run tests
13
+ vars :
14
+ TEST_NAME : kms
15
+ SUB_TEST_NAME : gcp fail
16
+ - name : test-azure
17
+ commands :
18
+ - func : run tests
19
+ vars :
20
+ TEST_NAME : kms
21
+ SUB_TEST_NAME : azure
22
+ - name : test-azure-fail
23
+ commands :
24
+ - func : bootstrap mongo-orchestration
25
+ - func : run tests
26
+ vars :
27
+ TEST_NAME : kms
28
+ SUB_TEST_NAME : azure fail
29
+
2
30
# Load balancer tests
3
31
- name : test-load-balancer-auth-ssl
4
32
commands :
Original file line number Diff line number Diff line change @@ -835,7 +835,7 @@ def create_load_balancer_tasks():
835
835
return tasks
836
836
837
837
838
- def create_kms_tests ():
838
+ def create_kms_tasks ():
839
839
tasks = []
840
840
for kms_type in ["gcp" , "azure" ]:
841
841
for success in [True , False ]:
@@ -851,6 +851,7 @@ def create_kms_tests():
851
851
test_func = FunctionCall (func = "run tests" , vars = test_vars )
852
852
commands .append (test_func )
853
853
tasks .append (EvgTask (name = name , commands = commands ))
854
+ return tasks
854
855
855
856
856
857
##################
You can’t perform that action at this time.
0 commit comments