Skip to content

Commit 4cc3d41

Browse files
author
valentinfrlch
committed
Fix tests, update README
1 parent b5df9f0 commit 4cc3d41

File tree

3 files changed

+14
-9
lines changed

3 files changed

+14
-9
lines changed

.vscode/settings.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
{
2-
"kiroAgent.configureMCP": "Disabled"
2+
"kiroAgent.configureMCP": "Disabled",
3+
"python.testing.pytestArgs": [
4+
"tests"
5+
],
6+
"python.testing.unittestEnabled": false,
7+
"python.testing.pytestEnabled": true
38
}

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
</p>
77
<p align=center>
88
<img src=https://img.shields.io/badge/HACS-Default-orange.svg>
9-
<img src="https://img.shields.io/maintenance/yes/2025.svg">
10-
<img src=https://img.shields.io/badge/version-1.5.2-blue>
9+
<img src="https://img.shields.io/maintenance/yes/2026.svg">
10+
<img src=https://img.shields.io/badge/version-1.6.0-blue>
1111
<img alt="Issues" src="https://img.shields.io/github/issues/valentinfrlch/ha-llmvision?color=0088ff">
12-
<img alt="Static Badge" src="https://img.shields.io/badge/support-buymeacoffee?logo=buymeacoffee&logoColor=black&color=%23FFDD00&link=https%3A%2F%2Fbuymeacoffee.com%2Fvalentinfrlch">
13-
<p align=center style="font-weight:bold">
14-
Visual intelligence for your smart home.
15-
</p>
12+
<img alt="Static Badge" src="https://img.shields.io/badge/support-buymeacoffee?logo=buymeacoffee&logoColor=black&color=%23FFDD00&link=https%3A%2F%2Fbuymeacoffee.com%2Fllmvision">
13+
<h2 align=center style="font-weight:bold">
14+
Visual Intelligence for your Home.
15+
</h2>
1616
</p>
1717

1818
<p align="center">
@@ -105,4 +105,4 @@ For technical questions see the discussions tab.
105105
## Support
106106
You can support this project by starring this GitHub repository. If you want, you can also buy me a coffee here:
107107
<br>
108-
<a href="https://www.buymeacoffee.com/valentinfrlch"><img src="https://img.buymeacoffee.com/button-api/?text=Buy me a coffee&emoji=☕&slug=valentinfrlch&button_colour=FFDD00&font_colour=000000&font_family=Inter&outline_colour=000000&coffee_colour=ffffff" /></a>
108+
<img alt="Static Badge" src="https://img.shields.io/badge/support-buymeacoffee?logo=buymeacoffee&logoColor=black&color=%23FFDD00&link=https%3A%2F%2Fbuymeacoffee.com%2Fllmvision">

tests/test_memory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def test_get_memory_images_unknown_type(self, mock_hass):
120120
memory = Memory(mock_hass)
121121
result = memory._get_memory_images(memory_type="Unknown")
122122

123-
assert result is None
123+
assert result == []
124124

125125
def test_str_representation(self, mock_hass):
126126
"""Test __str__ method."""

0 commit comments

Comments
 (0)