pytest快速入门1-安装和开始

pytest快速入门1-安装和开始[Python基础]

pytest是python中较常用的测试框架,官方文档见:

https://docs.pytest.org/en/stable/contents.html#toc

 

安装命令:

pip install -U pytest

检查是否安装成功命令:

pytest –version

能查到版本号说明安装OK,否则嘿嘿。

创建第一个测试脚本test_sample.py:

# content of test_sample.py
def func(x):
    return x + 1


def test_answer():
    assert func(3) == 5
hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » pytest快速入门1-安装和开始