遇到了同样的问题,查了一下午的时间终于解决了,需要在项目根目录下添加一个 pytest.ini 文件,并在文件中输入如下内容:
[pytest]
log_cli = 1
log_cli_level = INFO
log_cli_format = %(asctime) s [%(levelname) 8s] %(message) s (%(filename) s:%(lineno) s)
log_cli_date_format=%Y-%m-%d %H:%M:%S
具体见如下链接,作者还提供了其他方法,可参考。
https://www.cnblogs.com/landhu/p/9910460.html