Skip to content

Commit a8a2832

Browse files
committed
update data lake tests
1 parent 2489651 commit a8a2832

File tree

2 files changed

+6
-22
lines changed

2 files changed

+6
-22
lines changed

.evergreen/generated_configs/variants.yml

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -67,24 +67,14 @@ buildvariants:
6767
- rhel87-small
6868

6969
# Atlas data lake tests
70-
- name: atlas-data-lake-ubuntu-22-python3.9
70+
- name: atlas-data-lake-ubuntu-22
7171
tasks:
7272
- name: .no-local-server
73-
display_name: Atlas Data Lake Ubuntu-22 Python3.9
73+
display_name: Atlas Data Lake Ubuntu-22
7474
run_on:
7575
- ubuntu2204-small
7676
expansions:
7777
TEST_NAME: data_lake
78-
PYTHON_BINARY: /opt/python/3.9/bin/python3
79-
- name: atlas-data-lake-ubuntu-22-python3.13
80-
tasks:
81-
- name: .no-local-server
82-
display_name: Atlas Data Lake Ubuntu-22 Python3.13
83-
run_on:
84-
- ubuntu2204-small
85-
expansions:
86-
TEST_NAME: data_lake
87-
PYTHON_BINARY: /opt/python/3.13/bin/python3
8878

8979
# Aws auth tests
9080
- name: auth-aws-ubuntu-20-python3.9

.evergreen/scripts/generate_config.py

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -365,17 +365,11 @@ def create_no_c_ext_variants():
365365

366366

367367
def create_atlas_data_lake_variants():
368-
variants = []
369368
host = HOSTS["ubuntu22"]
370-
for python in MIN_MAX_PYTHON:
371-
tasks = [".no-local-server"]
372-
expansions = dict(TEST_NAME="data_lake")
373-
display_name = get_variant_name("Atlas Data Lake", host, python=python)
374-
variant = create_variant(
375-
tasks, display_name, host=host, python=python, expansions=expansions
376-
)
377-
variants.append(variant)
378-
return variants
369+
tasks = [".no-local-server"]
370+
expansions = dict(TEST_NAME="data_lake")
371+
display_name = get_variant_name("Atlas Data Lake", host)
372+
return [create_variant(tasks, display_name, host=host, expansions=expansions)]
379373

380374

381375
def create_mod_wsgi_variants():

0 commit comments

Comments
 (0)