Run the Temporal workflow/activity call resolver, swallowing any failure so build never fails because of it. Returns stats or None on error.
(store: GraphStore)
| 83 | |
| 84 | |
| 85 | def _run_temporal_resolver(store: GraphStore) -> Optional[dict]: |
| 86 | """Run the Temporal workflow/activity call resolver, swallowing any failure so |
| 87 | build never fails because of it. Returns stats or None on error. |
| 88 | """ |
| 89 | try: |
| 90 | from .temporal_resolver import resolve_temporal_calls |
| 91 | return resolve_temporal_calls(store) |
| 92 | except Exception as exc: # noqa: BLE001 - best-effort post-pass |
| 93 | logger.warning("Temporal resolver failed: %s", exc) |
| 94 | return None |
| 95 | |
| 96 | # Default ignore patterns (in addition to .gitignore). |
| 97 | # |
no test coverage detected