Skip to content

Commit 139599b

Browse files
committed
cleanup
1 parent 454a480 commit 139599b

File tree

3 files changed

+28
-30
lines changed

3 files changed

+28
-30
lines changed

.evergreen/generated_configs/tasks.yml

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1157,29 +1157,6 @@ tasks:
11571157
TEST_NAME: load_balancer
11581158
tags: [load-balancer, noauth, nossl]
11591159

1160-
# Min max tests
1161-
- name: test-python3.9
1162-
commands:
1163-
- func: assume ec2 role
1164-
- func: run tests
1165-
vars:
1166-
PYTHON_VERSION: "3.9"
1167-
tags: [min-max-python, python-3.9]
1168-
- name: test-python3.13
1169-
commands:
1170-
- func: assume ec2 role
1171-
- func: run tests
1172-
vars:
1173-
PYTHON_VERSION: "3.13"
1174-
tags: [min-max-python, python-3.13]
1175-
- name: test-pypy3.10
1176-
commands:
1177-
- func: assume ec2 role
1178-
- func: run tests
1179-
vars:
1180-
PYTHON_VERSION: pypy3.10
1181-
tags: [min-max-python, python-pypy3.10, pypy]
1182-
11831160
# Mockupdb tests
11841161
- name: test-mockupdb
11851162
commands:
@@ -1230,6 +1207,29 @@ tasks:
12301207
SUB_TEST_NAME: embedded
12311208
tags: [mod_wsgi]
12321209

1210+
# No local server tests
1211+
- name: test-no-local-server-python3.9
1212+
commands:
1213+
- func: assume ec2 role
1214+
- func: run tests
1215+
vars:
1216+
PYTHON_VERSION: "3.9"
1217+
tags: [no-local-server, python-3.9]
1218+
- name: test-no-local-server-python3.13
1219+
commands:
1220+
- func: assume ec2 role
1221+
- func: run tests
1222+
vars:
1223+
PYTHON_VERSION: "3.13"
1224+
tags: [no-local-server, python-3.13]
1225+
- name: test-no-local-server-pypy3.10
1226+
commands:
1227+
- func: assume ec2 role
1228+
- func: run tests
1229+
vars:
1230+
PYTHON_VERSION: pypy3.10
1231+
tags: [no-local-server, python-pypy3.10]
1232+
12331233
# No server tests
12341234
- name: test-no-server
12351235
commands:

.evergreen/generated_configs/variants.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ buildvariants:
6161
# Atlas connect tests
6262
- name: atlas-connect-rhel8
6363
tasks:
64-
- name: .min-max-python
64+
- name: .no-local-server
6565
display_name: Atlas connect RHEL8
6666
run_on:
6767
- rhel87-small

.evergreen/scripts/generate_config.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ def create_atlas_connect_variants():
477477
host = DEFAULT_HOST
478478
return [
479479
create_variant(
480-
[".min-max-python"],
480+
[".no-local-server"],
481481
get_variant_name("Atlas connect", host),
482482
host=DEFAULT_HOST,
483483
)
@@ -661,16 +661,14 @@ def create_server_tasks():
661661
return tasks
662662

663663

664-
def create_min_max_tasks():
664+
def create_no_local_server_tasks():
665665
tasks = []
666666
for python in [*MIN_MAX_PYTHON, PYPYS[-1]]:
667667
tags = [
668-
"min-max-python",
668+
"no-local-server",
669669
f"python-{python}",
670670
]
671-
if "pypy" in python:
672-
tags.append("pypy")
673-
name = get_task_name("test", python=python)
671+
name = get_task_name("test-no-local-server", python=python)
674672
assume_func = FunctionCall(func="assume ec2 role")
675673
test_vars = dict(PYTHON_VERSION=python)
676674
test_func = FunctionCall(func="run tests", vars=test_vars)

0 commit comments

Comments
 (0)