Skip to content

Commit 8afcfa6

Browse files
authored
Merge pull request #450 from validmind/juan/sc-13270/include-both-figures-and-tables-in-test-result-descriptions
[SC-13270] Include both figures and tables in test result descriptions
2 parents def56fe + 0e1b402 commit 8afcfa6

4 files changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/dependency-testing.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ jobs:
4848
steps:
4949
- uses: actions/checkout@v4
5050

51+
- name: Free Disk Space
52+
run: ./disk_clean.sh
53+
5154
- name: Set up Python ${{ matrix.python-version }}
5255
uses: actions/setup-python@v5
5356
with:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "validmind"
3-
version = "2.10.3"
3+
version = "2.10.4"
44
description = "ValidMind Library"
55
readme = "README.pypi.md"
66
requires-python = ">=3.9,<3.13"

validmind/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.10.3"
1+
__version__ = "2.10.4"

validmind/ai/test_descriptions.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,7 @@ def generate_description(
121121
"test_description": test_description,
122122
"title": title,
123123
"summary": _truncate_summary(summary, test_id),
124-
"figures": [
125-
figure._get_b64_url() for figure in ([] if tables else figures)
126-
],
124+
"figures": [figure._get_b64_url() for figure in figures or []],
127125
"additional_context": additional_context,
128126
"instructions": instructions,
129127
}

0 commit comments

Comments
 (0)