Skip to content

Commit 56f52f6

Browse files
committed
Removed pypy from test matrix of test-numpy
1 parent 1a408cf commit 56f52f6

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

.evergreen/generated_configs/tasks.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4774,19 +4774,21 @@ tasks:
47744774
- func: test numpy
47754775
vars:
47764776
TOOLCHAIN_VERSION: "3.10"
4777-
tags: [binary, vector, python-3.10]
4777+
tags:
4778+
- binary
4779+
- vector
4780+
- python-3.10
4781+
- test-numpy
47784782
- name: test-numpy-python3.14
47794783
commands:
47804784
- func: test numpy
47814785
vars:
47824786
TOOLCHAIN_VERSION: "3.14"
4783-
tags: [binary, vector, python-3.14]
4784-
- name: test-numpy-pypy3.11
4785-
commands:
4786-
- func: test numpy
4787-
vars:
4788-
TOOLCHAIN_VERSION: pypy3.11
4789-
tags: [binary, vector, python-pypy3.11]
4787+
tags:
4788+
- binary
4789+
- vector
4790+
- python-3.14
4791+
- test-numpy
47904792

47914793
# Test standard auth tests
47924794
- name: test-standard-auth-v4.2-python3.10-auth-ssl-sharded-cluster

.evergreen/scripts/generate_config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -341,8 +341,8 @@ def create_disable_test_commands_variants():
341341

342342
def create_test_numpy_tasks():
343343
tasks = []
344-
for python in [*MIN_MAX_PYTHON, PYPYS[-1]]:
345-
tags = ["binary", "vector", f"python-{python}"]
344+
for python in MIN_MAX_PYTHON:
345+
tags = ["binary", "vector", f"python-{python}", "test-numpy"]
346346
task_name = get_task_name("test-numpy", python=python)
347347
test_func = FunctionCall(func="test numpy", vars=dict(TOOLCHAIN_VERSION=python))
348348
tasks.append(EvgTask(name=task_name, tags=tags, commands=[test_func]))

0 commit comments

Comments
 (0)