INNER CODE UNIT · Python
main
blokadaorg/blokada · .github/scripts/translation_coverage.py:138
def main():
# Informational only: coverage lag is expected, and a release must never be
# blocked by this. Downgrade any unexpected failure to a warning.
try:
run()
except Exception as e: # noqa: BLE001 - best-effort reporting
warn(f"coverage report failed: {e}")
sys.exit(0)
if __name__ == "__main__":
main()