我有一个这样的烧瓶应用程序
from flask import Flask
import logging
app = Flask(__name__)
@app.route('/')
def catch_all():
logging.warning("I'm a warning")
return "This is a REST API"
if __name__ == '__main__':
app.run(host='0.0.0.0', port=8080, debug=True)
运行时,我在日志中看到警告
WARNING:root:I'm a warning
然后我创建一个像这样的测试
import fulfillment
def test_index():
fulfillment.app.testing = True
client = fulfillment.app.test_client()
r = client.get('/')
assert r.status_code == 200
assert 'This is a REST API' in r.data.decode('utf-8')
当我使用pytest
运行测试时,看不到被测函数的日志消息。我发现How can I see normal print output created during pytest run?听起来很相似,但是pytest -s
选项不起作用,我认为它实际上是在谈论测试函数的输出,而不是被测试函数的输出。
如何查看被测函数的日志?
答案 0 :(得分:1)
This可能是原因。只需使用设置创建pytest.ini
。
[pytest]
log_cli=true
log_level=NOTSET
工作正常:
pytest test_my.py
# ...
-------------------------------- live log call ---------------------------------
fulfillment.py 37 WARNING I'm a warning
PASSED [100%]
=========================== 1 passed in 0.09 seconds ===========================
您还可以设置log_format
,log_date_format
和其他选项。
希望这会有所帮助。