Coverage for scripts / live_release_validation / checks / inference_common.py: 100.00%

2 statements  

« prev     ^ index     » next       coverage.py v7.13.5, created at 2026-09-14 22:07 +0000

1"""Shared error types for live inference validation helpers.""" 

2 

3 

4class ManagedInferenceValidationError(RuntimeError): 

5 """Sanitized validation error safe to include in the private report.""" 

6 

7 

8class InferenceCommandFailure(RuntimeError): 

9 """A subprocess failed; raw output is already in the private checkpoint."""