Skip to content

Commit 9d5f94b

Browse files
committed
fix options logic
1 parent 79028b6 commit 9d5f94b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.evergreen/scripts/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def get_test_options(
6464
if require_sub_test_name:
6565
parser.add_argument(
6666
"test_name",
67-
choices=sorted(TEST_SUITE_MAP + EXTRA_TESTS),
67+
choices=sorted(list(TEST_SUITE_MAP) + EXTRA_TESTS),
6868
nargs="?",
6969
default="default",
7070
help="The optional name of the test suite to set up, typically the same name as a pytest marker.",

0 commit comments

Comments
 (0)