Andrew Pikul
Results
62
comments of
Andrew Pikul
I think I solved this issue https://github.com/pytest-dev/pytest/pull/12854 _if you use fixture `capteesys` with `--coverage=sys`, it's like `capsys` AND you still get the reports._
I've created a polyfill to add to `conftest.py` to use this feature and warn when it is finally released: ```python @pytest.fixture(scope="function") def capteesys(request): from _pytest import capture import warnings if...