I am trying to unit-test some algorithm that uses logging library.
I have a fixture that creates a logger.
In my 1st test case, I do not use
I'm guessing the logger gets created (via the fixture) before the capsys fixture is set up.
capsys
Some ideas:
logger, capsys
logger
capfd
sys