(s: str)
| 629 | """ |
| 630 | |
| 631 | def exit_code_from_str_or_skip(s: str) -> ExitCode | None: |
| 632 | try: |
| 633 | return ExitCode.from_str(s) |
| 634 | except (KeyError, ValueError): |
| 635 | out.warn(f"WARN: no_raise value `{s}` is not a valid exit code. Skipping.") |
| 636 | return None |
| 637 | |
| 638 | return [ |
| 639 | code.value |
no test coverage detected
searching dependent graphs…