Skip to content

Commit 69ea195

Browse files
committed
clean up tasks
1 parent 4364b64 commit 69ea195

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.evergreen/generated_configs/tasks.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -714,63 +714,63 @@ tasks:
714714
tags: [auth-aws, auth-aws-web-identity]
715715

716716
# Compression tests
717-
- name: test-compression-v4.0-python3.13
717+
- name: test-compression-v4.0-python3.9
718718
commands:
719719
- func: run server
720720
vars:
721721
VERSION: "4.0"
722722
- func: run tests
723723
tags: [compression, "4.0"]
724-
- name: test-compression-v4.2-python3.13
724+
- name: test-compression-v4.2-python3.9
725725
commands:
726726
- func: run server
727727
vars:
728728
VERSION: "4.2"
729729
- func: run tests
730730
tags: [compression, "4.2"]
731-
- name: test-compression-v4.4-python3.13
731+
- name: test-compression-v4.4-python3.9
732732
commands:
733733
- func: run server
734734
vars:
735735
VERSION: "4.4"
736736
- func: run tests
737737
tags: [compression, "4.4"]
738-
- name: test-compression-v5.0-python3.13
738+
- name: test-compression-v5.0-python3.9
739739
commands:
740740
- func: run server
741741
vars:
742742
VERSION: "5.0"
743743
- func: run tests
744744
tags: [compression, "5.0"]
745-
- name: test-compression-v6.0-python3.13
745+
- name: test-compression-v6.0-python3.9
746746
commands:
747747
- func: run server
748748
vars:
749749
VERSION: "6.0"
750750
- func: run tests
751751
tags: [compression, "6.0"]
752-
- name: test-compression-v7.0-python3.13
752+
- name: test-compression-v7.0-python3.9
753753
commands:
754754
- func: run server
755755
vars:
756756
VERSION: "7.0"
757757
- func: run tests
758758
tags: [compression, "7.0"]
759-
- name: test-compression-v8.0-python3.13
759+
- name: test-compression-v8.0-python3.9
760760
commands:
761761
- func: run server
762762
vars:
763763
VERSION: "8.0"
764764
- func: run tests
765765
tags: [compression, "8.0"]
766-
- name: test-compression-rapid-python3.13
766+
- name: test-compression-rapid-python3.9
767767
commands:
768768
- func: run server
769769
vars:
770770
VERSION: rapid
771771
- func: run tests
772772
tags: [compression, rapid]
773-
- name: test-compression-latest-python3.13
773+
- name: test-compression-latest-python3.9
774774
commands:
775775
- func: run server
776776
vars:

.evergreen/scripts/generate_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -844,7 +844,7 @@ def create_compression_tasks():
844844
versions = get_versions_from("4.0")
845845
# Test all server versions with min python.
846846
for version in versions:
847-
python = CPYTHONS[-1]
847+
python = CPYTHONS[0]
848848
tags = ["compression", version]
849849
name = get_task_name("test-compression", python=python, version=version)
850850
server_func = FunctionCall(func="run server", vars=dict(VERSION=version))

0 commit comments

Comments
 (0)