pytest框架怎么搭建
时间: 2023-12-02 08:04:23 浏览: 80
pytest框架
pytest框架的搭建可以分为以下步骤:
1. 安装pytest:使用pip命令安装pytest框架,如下所示:
```
pip install pytest
```
2. 编写测试用例:在指定的目录下创建一个test文件夹,里面存放测试用例文件,每个测试用例文件以test_开头,并且测试用例函数以test_开头。
3. 运行测试:使用pytest命令运行测试用例,pytest会自动发现并运行test文件夹下的所有测试用例文件,如下所示:
```
pytest
```
4. 查看测试结果:pytest会输出测试结果,包括测试用例的执行情况、通过率、失败原因等信息。
```
============================ test session starts ============================
platform win32 -- Python 3.7.3, pytest-5.0.1, py-1.8.0, pluggy-0.12.0
rootdir: D:\learning\pytest_demo
collected 2 items
test_demo.py .F [100%]
================================= FAILURES =================================
________________________________ test_demo2 _______________________________
def test_demo2():
> assert 3 == 4
E assert 3 == 4
test_demo.py:6: AssertionError
========================== 1 failed, 1 passed in 0.14 seconds ==========================
```
以上就是pytest框架的搭建过程。
阅读全文