pytest快速入门1-安装和开始
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