Ignore flaky cloud translations (#131600)
parent
5d5ab82ba0
commit
db198d4da2
|
@ -777,6 +777,9 @@ async def check_translations(
|
||||||
f"Unused ignore translations: {', '.join(unused_ignore)}. "
|
f"Unused ignore translations: {', '.join(unused_ignore)}. "
|
||||||
"Please remove them from the ignore_translations fixture."
|
"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"}:
|
if description not in {"used", "unused"}:
|
||||||
pytest.fail(description)
|
pytest.fail(description)
|
||||||
|
|
Loading…
Reference in New Issue