1. 概述
pytest官方文档介绍:
pytest: helps you write better programs
pytest
is a framework that makes building simple and scalable tests easy. Tests are expressive and readable—no boilerplate code required. Get started in minutes with a small unit test or complex functional test for your application or library.
翻译过来意思是:
pytest测试框架,它使得构建简单且可扩展的测试变得容易。测试是表达性和可读性的——不需要样板代码。在几分钟内开始对您的应用程序或库进行一个小的单元测试或复杂的功能测试。
总体来说:pytest是一个非常成熟的全功能的Python测试框架。
特点:
①安装:cmd窗口输入pip命令进行安装 pip install -U pytest
②安装完成后,确认版本信息 pyets --version