Skip to content

Commit f9a8179

Browse files
committed
update start server options
1 parent 2f7b221 commit f9a8179

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.evergreen/scripts/utils.py

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,15 @@ class Distro:
5555
EXTRA_TESTS = ["mod_wsgi", "aws_lambda", "doctest"]
5656

5757
# Tests that do not use run-orchestration directly.
58-
NO_RUN_ORCHESTRATION = ["auth_oidc", "atlas_connect", "data_lake", "mockupdb", "serverless", "ocsp"]
58+
NO_RUN_ORCHESTRATION = [
59+
"auth_oidc",
60+
"atlas_connect",
61+
"aws_lambda",
62+
"data_lake",
63+
"mockupdb",
64+
"serverless",
65+
"ocsp",
66+
]
5967

6068

6169
def get_test_options(
@@ -78,7 +86,7 @@ def get_test_options(
7886
else:
7987
parser.add_argument(
8088
"test_name",
81-
choices=set(TEST_SUITE_MAP) - set(NO_RUN_ORCHESTRATION),
89+
choices=set(TEST_SUITE_MAP) + set(EXTRA_TESTS) - set(NO_RUN_ORCHESTRATION),
8290
nargs="?",
8391
default="default",
8492
help="The optional name of the test suite to be run, which informs the server configuration.",

0 commit comments

Comments
 (0)