1
0
mirror of https://github.com/home-assistant/core.git synced 2026-04-17 23:53:49 +01:00

Remove workaround for flaky translation tests (#131628)

This commit is contained in:
epenet
2024-11-27 15:37:36 +01:00
committed by GitHub
parent a7db35c76c
commit d6f4a79b46
4 changed files with 28 additions and 5 deletions

View File

@@ -827,9 +827,6 @@ async def check_translations(
f"Unused ignore translations: {', '.join(unused_ignore)}. "
"Please remove them from the ignore_translations fixture."
)
for key, description in translation_errors.items():
if key.startswith("component.cloud.issues."):
# cloud tests are flaky
continue
for description in translation_errors.values():
if description not in {"used", "unused"}:
pytest.fail(description)