摘要:
一: Pytest Exit Code含义清单 Exit code 0 所有用例执行完毕,全部通过 Exit code 1 所有用例执行完毕,存在Fail的测试用例 Exit code 2 用户中断了测试的执行 Exit code 3 测试执行过程发生了内部错误 Exit code 4 pytest 阅读全文
摘要:
pytest是python的一种单元测试框架,与unittest测试框架类似,但是比unittest框架使用起来更加简洁,效率更高. 安装pytest: pip install pytest 框架使用流程 创建如下源码文件test_1.py def add(x, y): return x+y def 阅读全文