0


【Python单元测试】pytest框架单元测试 配置 命令行操作 测试报告 覆盖率

单元测试(unit test),简称UT。本文将介绍在Python项目中,pytest测试框架的安装,配置,执行,测试报告与覆盖率

pytest简介

在这里插入图片描述
pytest是一款流行的,简单易上手的单元测试框架,让开发&测试人员专注业务逻辑。
同时pytest有丰富的第三方扩展库,方便生成报告,输出UT覆盖率,支持快速高效的分布式执行。

安装

pytest pypi
pytest-html
pytest-cov
pytest-xdist
更多好用好玩的扩展库,本文将持续更新中……

  1. pip install pytest
  2. pip install pytest-html # 生成html格式UT报告
  3. pip install pytest-cov # 覆盖率
  4. pip install pytest-dist # 分布式执行UT# 更新第三方库
  5. pip install pytest -U
  6. pip install pytest-html -U
  7. pip install pytest-cov -U
  8. pip install pytest-dist -U

可行的目录结构

  1. Project
  2. ModuleA
  3. ModuleB
  4. pytest.ini # pytest测试框架配置文件
  5. .coveragerc # 覆盖率配置文件
  6. unit_test
  7. __init__.py # 必须要有
  8. conftest.py # pytest 测试套等文件
  9. test_xx.py

配置

PyCharm默认pytest测试框架

中文:

  1. 设置

-->

  1. 工具

-->

  1. Python集成工具

-->

  1. 测试

--> 默认测试运行程序: 选择

  1. pytest

在这里插入图片描述
英文:

  1. Settings

-->

  1. Tools

-->

  1. Python Integrated Tools

-->

  1. Testing

--> Default test runner:

  1. pytest

在这里插入图片描述

  1. pytest.ini
  1. # Project pytest.ini
  2. [pytest]
  3. # 测试用例文件搜索的目录
  4. testpaths = ./tests
  5. # 定义测试标记
  6. markers =
  7. slow: mark test as slow
  8. # 测试用例文件的命名规则
  9. python_files = test_*.py
  10. # 测试函数的命名规则
  11. python_classes = Test
  12. python_functions = test
  13. # 在控制台输出中展示更多的信息 此处 --cov 会导致PyCharm断点调试失败
  14. addopts = -v
  15. # 标记一个测试用例为失败
  16. xfail_strict = true
  17. # 在测试结果中包含原因和语句
  18. setupshow = call, reason, short
  19. # 指定忽略的目录
  20. norecursedirs = .git venv

pytest.ini

  1. 避坑

pytest.ini options中配置了

  1. --cov

覆盖率相关的命令,会导致PyCharm中 单元测试用例

  1. 断点调试

失败。
本地开发测试中,pytest.ini中切勿配置!!!

  1. conftest.py

conftest.py是pytest测试框架中特有的文件,可以在此文件中写一些fixture的测试套。
可以写一些前置或后置的测试套,例如连接数据库,初始化环境,或者扫尾的操作。
fixture中声明的函数,测试脚本中可以直接引用,不需要导入, 实现数据共享等
注意点:

  • conftest.py 此文件名称是固定的,不能修改
  • conftest.py必须与运行的测试用例要在同一个package下,并且要有__init__.py
  • 在使用时不需要手动import导入conftest.py,pytest在测试用例执行时会自动去conftest.py文件中查找fixture
  • 一个项目下可以有多个conftest.py文件,一般在项目根目录下放一个conftest.py文件起到全局作用;在不同的目录下都可以放置conftest.py文件,作用范围只在该层级以及以下目录生效
  1. # unit_test/conftest.py# -*- coding: utf-8 -*-import pytest
  2. # 默认执行, 优先度高# 例如 可以 将文件路径添加到 sys.path@pytest.fixture(scope="session")# scope范围: session > module > class > functiondefhandler():
  3. do_something_pre()yield
  4. do_something_post()from your_database_module import create_connection
  5. # fixtures将在测试会话开始时自动检测并可供所有测试文件使用。#scope="session" 参数表示该fixture的生命周期是整个测试会话期间,因此数据库连接只会创建一次,所有测试都可以共享这个连接 @pytest.fixture(scope="session")defdb_connection():"""
  6. 创建数据库连接的fixture
  7. """
  8. connection = create_connection("your_database.db")yield connection # 测试函数可以使用connection
  9. connection.close()# 测试后关闭连接@pytest.fixturedefshared_data():# 模拟获取共享数据的过程
  10. data ={"key1":"value1","key2":"value2"}return data
  1. # unit_test/test_xx.pyimport pytest
  2. deftest_database_connection(db_connection):# conftest.py中已经声明db_connection 无需导入assert db_connection isnotNone# 这里可以进行数据库相关的测试deftest_function(shared_data):# conftest.py中已经声明shared_data, 无需导入# 使用共享数据assert shared_data["key1"]=="value1"assert shared_data["key2"]=="value2"

  1. .coveragerc

覆盖率配置文件,放在

  1. unit_test

同级目录, 命令行执行覆盖率统计后,报告在htmlcov目录中。
此配置文件中,可以配置

  • 覆盖率统计的代码源目录,
  • 忽略的脚本(支持正则写法),
  • 忽略的代码行(支持正则写法)。
  1. # .coveragerc
  2. [run]
  3. # 分支
  4. branch = True
  5. # 目录路径
  6. source = .
  7. # 忽略覆盖率统计的文件(夹)
  8. omit =
  9. unit_test/*
  10. # 更多其他不需要统计的文件(夹)
  11. [report]
  12. exclude_lines =
  13. # 以下是一些常见的Python库和测试框架的代码不计算在覆盖率内的行
  14. ^def __repr__
  15. ^class .*Test$
  16. ^if __name__ == .__main__.:
  17. # 你可以根据需要添加更多的排除模式

执行UT

命令行执行

命令行中命令可以配置到

  1. pytest.ini

  1. addopts

后,其中

  1. --cov

不建议配置

  1. # -n 分布式执行的线程数量,需要小于系统核数。 例如: -n 7# --html 指定UT报名的名称# --self-contained-html 生成单个html文件,包含css样式等# --cov 执行覆盖率统计,后面可以指定名称,也可以不指定。 指定: --cov=projectName# --cov-config=.coveragerc 指定配置文件# --cov-report=html 输出html格式报告# ubit_test\ UT用例路径
  2. pytest -n 7 --html=report.html --self-contained-html --cov --cov-config=.coveragerc --cov-report=html unit_test\

PyCharm右键执行

右键执行,支持

  1. 运行
  1. 调试

光标的位置,决定是运行单个测试用例/单个测试类/整个单元测试文件
在这里插入图片描述

测试报告report.html

生成的报告中,会显示通过/失败的测试用例。
单击行 可以折叠/打开 用例执行信息
在这里插入图片描述

覆盖率报告 htmlcov/index.html

覆盖率会显示全部覆盖率/某个单元测试文件(夹)的覆盖率,涉及合计/执行、未执行/忽略的行等信息
在这里插入图片描述


本文转载自: https://blog.csdn.net/chichu261/article/details/143375783
版权归原作者 彳亍261 所有, 如有侵权,请联系我们删除。

“【Python单元测试】pytest框架单元测试 配置 命令行操作 测试报告 覆盖率”的评论:

还没有评论