mirror of
https://github.com/home-assistant/core.git
synced 2025-04-23 08:47:57 +00:00
Ignore flaky cloud translations (#131600)
This commit is contained in:
parent
5d5ab82ba0
commit
db198d4da2
@ -777,6 +777,9 @@ async def check_translations(
|
||||
f"Unused ignore translations: {', '.join(unused_ignore)}. "
|
||||
"Please remove them from the ignore_translations fixture."
|
||||
)
|
||||
for description in translation_errors.values():
|
||||
for key, description in translation_errors.items():
|
||||
if key.startswith("component.cloud.issues."):
|
||||
# cloud tests are flaky
|
||||
continue
|
||||
if description not in {"used", "unused"}:
|
||||
pytest.fail(description)
|
||||
|
Loading…
x
Reference in New Issue
Block a user