# 运行时提示:
pytest - Windows fatal exception: code 0x8001010d
# 解决方法:pytest.ini 中加上 no:faulthandler
addopts = -vs -p no:faulthandler --html ../report/re.html
# 运行时警告:
DeprecationWarning: invalid escape sequence \d
# 解决方法:加上: -p no:warnings忽略警告
addopts = -vs -p no:warnings --html ../report/re.html
标签:02,no,pytest,vs,报错,html
From: https://www.cnblogs.com/kh-1314/p/17337714.html