The only lines not covered by tests at the moment are the following ones from cli.py:
case 1:
log_level = logging.INFO
case _: # >= 2
log_level = logging.DEBUG
They are not covered because setting logging verbosity using logging.basicConfig within a click.CliRunner context seems to do nothing, probably because another logger is already in place.
The only lines not covered by tests at the moment are the following ones from
cli.py
:They are not covered because setting logging verbosity using
logging.basicConfig
within aclick.CliRunner
context seems to do nothing, probably because another logger is already in place.We need to figure out how to do that properly.