CSDN博客地址
摘要: 一: Pytest Exit Code含义清单 Exit code 0 所有用例执行完毕,全部通过 Exit code 1 所有用例执行完毕,存在Fail的测试用例 Exit code 2 用户中断了测试的执行 Exit code 3 测试执行过程发生了内部错误 Exit code 4 pytest 阅读全文
posted @ 2020-08-30 21:56 Yi_warmth 阅读(281) 评论(0) 推荐(0) 编辑
摘要: pytest是python的一种单元测试框架,与unittest测试框架类似,但是比unittest框架使用起来更加简洁,效率更高. 安装pytest: pip install pytest 框架使用流程 创建如下源码文件test_1.py def add(x, y): return x+y def 阅读全文
posted @ 2020-08-30 13:14 Yi_warmth 阅读(362) 评论(0) 推荐(0) 编辑
CSDN博客地址