Skip to content
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
4b911f1
Merge remote-tracking branch 'origin/main' into prod-2.8.28
actions-user Jul 24, 2025
fd6f776
Merge pull request #397 from validmind/prod-2.8.28
nibalizer Jul 24, 2025
26437fd
Merge remote-tracking branch 'origin/main' into prod-2.8.29
actions-user Jul 24, 2025
699d158
Merge pull request #399 from validmind/prod-2.8.29
nibalizer Jul 24, 2025
79e7b67
Merge remote-tracking branch 'origin/main' into prod-2.9.1
actions-user Aug 11, 2025
146c74d
Merge pull request #413 from validmind/prod-2.9.1
cachafla Aug 11, 2025
3233306
hotfix: remove check for is configured for test description generation
johnwalz97 Aug 26, 2025
1ada5ce
2.9.2
johnwalz97 Aug 26, 2025
497de1f
Merge pull request #418 from validmind/hotfix/remove-llm-configured-c…
johnwalz97 Aug 26, 2025
bc7eb5b
Merge remote-tracking branch 'origin/main' into nibz/manual_prod_II
nibalizer Sep 4, 2025
cd1ae66
chore: bump version number
nibalizer Sep 4, 2025
7bd4f01
Merge pull request #421 from validmind/nibz/manual_prod_II
nibalizer Sep 4, 2025
2eae085
Merge branch 'main' into hotfix-torch-dependency
johnwalz97 Sep 11, 2025
c27bb21
Merge pull request #424 from validmind/hotfix-torch-dependency
johnwalz97 Sep 11, 2025
edf5ac8
Merge remote-tracking branch 'origin/main' into prod-2.9.5
actions-user Sep 30, 2025
42125db
Merge pull request #430 from validmind/prod-2.9.5
nibalizer Sep 30, 2025
8af173e
hotfix: dont require metadata decorators
johnwalz97 Oct 15, 2025
f2715ad
2.9.6
johnwalz97 Oct 15, 2025
a2d4d76
fix: dont need this here
johnwalz97 Oct 15, 2025
00564f9
Merge pull request #437 from validmind/hotfix/john/dont-require-metad…
johnwalz97 Oct 15, 2025
b452964
Merge branch 'prod'
johnwalz97 Oct 23, 2025
90620a7
Merge main into prod-to-main, resolve version conflicts
johnwalz97 Oct 23, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions validmind/tests/load.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,12 @@ def load_test(
# add inputs and params as attributes to the test function
test_func.inputs, test_func.params = _inspect_signature(test_func)

# ensure tags and tasks attributes exist, default to empty list if not present
if not hasattr(test_func, "__tags__"):
test_func.__tags__ = []
if not hasattr(test_func, "__tasks__"):
test_func.__tasks__ = []

test_store.register_test(test_id, test_func)

return test_store.get_test(test_id)
Expand Down
Loading