pytest:帮助你编写更好的程序¶
pytest
框架使编写小型、可读的测试变得容易,并且可以扩展以支持应用程序和库的复杂功能测试。
pytest
需要:Python 3.8+ 或 PyPy3。
PyPI 包名: pytest
快速示例¶
# content of test_sample.py
def inc(x):
return x + 1
def test_answer():
assert inc(3) == 5
要执行它
$ pytest
=========================== test session starts ============================
platform linux -- Python 3.x.y, pytest-8.x.y, pluggy-1.x.y
rootdir: /home/sweet/project
collected 1 item
test_sample.py F [100%]
================================= FAILURES =================================
_______________________________ test_answer ________________________________
def test_answer():
> assert inc(3) == 5
E assert 4 == 5
E + where 4 = inc(3)
test_sample.py:6: AssertionError
========================= short test summary info ==========================
FAILED test_sample.py::test_answer - assert 4 == 5
============================ 1 failed in 0.12s =============================
由于 pytest
详细的断言自省,仅使用普通的 assert
语句。有关使用 pytest 的基本介绍,请参阅 开始使用。
特性¶
关于失败的 assert 语句 的详细信息(无需记住
self.assert*
名称)测试模块和函数的 自动发现
用于管理小型或参数化长期存在的测试资源的 模块化 fixtures
可以开箱即用地运行 unittest(包括 trial)测试套件
Python 3.8+ 或 PyPy 3
丰富的插件架构,拥有超过 1300 多个 外部插件 和蓬勃发展的社区
文档¶
Bug/请求¶
请使用 GitHub issue 跟踪器 提交 bug 或请求功能。
支持 pytest¶
Open Collective 是一个为开放和透明社区提供的在线资助平台。它提供了筹集资金并在完全透明的情况下分享您的财务状况的工具。
它是希望直接向项目进行一次性或每月捐款的个人和公司的首选平台。
在 pytest collective 中查看更多详细信息。
企业版 pytest¶
作为 Tidelift 订阅的一部分提供。
pytest 和数千个其他软件包的维护者正在与 Tidelift 合作,为您构建应用程序所使用的开源依赖项提供商业支持和维护。节省时间,降低风险,并改善代码健康状况,同时向您使用的确切依赖项的维护者付费。
安全性¶
pytest 从未与安全漏洞相关联,但在任何情况下,要报告安全漏洞,请使用 Tidelift 安全联系方式。Tidelift 将协调修复和披露。