我一直在将pytest与pytest-xdist和pytest-sugar一起用于我的单元测试,这似乎很好用,但是我可以使用什么参数来列出错误测试用例,就像失败的总结一样?
我已经尝试过 -r ,但仍然无法正常工作
我使用的测试命令
$pytest -n 3 -v --tb=short -p no:warnings
7 passed
3 failed
- scripts/testcase.py TestName
- scripts/testcase.py TestAddress
- scripts/testcase.py TestPhone
2 error
1 skipped
答案 0 :(得分:0)
没有pytest-sugar参数可以将错误的测试用例列为失败的用例。 错误测试由pytest处理,并且pytest-sugar报告无论pytest报告如何,尽管以一种优美的方式进行。
如果需要,可以使用node
pytest固定装置更改错误测试的执行状态。