Closed
Description
Hi,
To reduce report file size, I'm trying to exclude any captured stdout/stderr/log output.
I'm running tests with the following command:
pytest --html=report.html --self-contained-html --capture=no --show-capture=no tests/
With this I still get the Captured log call
section for every test no matter if it pass or not.
So the question, how to not include any captured output to the report?