pytest模块
安装
1 | pip3 install pytest |
第一个案例
demo.py
1 | def func(x): |
test_create.py
1 | class TestClass(object): |
执行方法
1 | pytest 文件名 # 可以执行文件中的测试代码 |
技术成长之路
安装
1 | pip3 install pytest |
第一个案例
demo.py
1 | def func(x): |
test_create.py
1 | class TestClass(object): |
执行方法
1 | pytest 文件名 # 可以执行文件中的测试代码 |