It seems the CLI option --debug is used to prevent subprocess.run() to raise errors during integration tests.
- This could be avoided by using
click.CliRunner().
- Additionally
ec_path = shutil.which("ec") sounds questionable
Originally posted by @ckunki in #87 (comment)
It seems the CLI option
--debugis used to preventsubprocess.run()to raise errors during integration tests.click.CliRunner().ec_path = shutil.which("ec")sounds questionableOriginally posted by @ckunki in #87 (comment)