Ignores coverage of the possible unknown exception during convert call

This commit is contained in:
Trenton H 2024-04-04 12:52:59 -07:00
parent af2dee790c
commit 3f90f8c1cf

View File

@ -169,7 +169,7 @@ def run_convert(
run_subprocess(args, environment, logger)
except subprocess.CalledProcessError as e:
raise ParseError(f"Convert failed at {args}") from e
except Exception as e:
except Exception as e: # pragma: no cover
raise ParseError("Unknown error running convert") from e