跳转到主要内容

格式化PyTest输出以适应Azure Pipelines UI

项目描述

PyPI version Python versions PyPI download month https://anaconda.org/conda-forge/pytest-azurepipelines/badges/version.svg

使Pytest更容易与Microsoft Azure Pipelines一起使用。

只需运行具有此插件的pytest,然后在Azure Pipelines UI中查看您的测试结果!


功能

  • 在Azure Pipelines UI中格式化PyTest输出以显示测试文档字符串和模块名称,而不仅仅是测试用例名称。

  • 自动上传测试结果,无需单独的测试结果上传命令

  • 如果有失败,则UI中将显示错误消息中的失败测试数量

  • 如果安装了pytest-cov,则自动格式化代码覆盖率并上传覆盖率数据

  • 支持在Docker容器内运行并自动上传测试结果

安装

您可以通过从 pip 安装 PyPI 来安装“pytest-azurepipelines”。

$ pip install pytest-azurepipelines

用法

此插件无需配置。

以下是一个安装插件并运行测试的示例。

- script: |
    python -m pip install --upgrade pip
    pip install pytest pytest-azurepipelines
    pip install -e .
  displayName: 'Install dependencies'

- script: |
    python -m pytest tests/
  displayName: 'pytest'

如果您想更改 Azure Pipelines 的“测试运行标题”,可以提供带有运行标题的 –test-run-title 标志。

- script: |
    pip install pytest pytest-azurepipelines
    pytest tests/ --test-run-title="Windows Test"

如果您在函数中具有长的文档字符串并希望将其缩短,可以使用 –napoleon-docstrings 标志

- script: |
   pip install pytest pytest-azurepipelines
   pytest tests/ --test-run-title="Windows Test" --napoleon-docstrings

可以通过 –report-dir 标志更改搜索 html 报告的目录。默认为 htmlcov

- script: |
   pip install pytest pytest-azurepipelines
   pytest tests/ --report-dir=custom_folder

固定装置

此插件提供了以下固定装置。

record_pipelines_property

调用 record_pipelines_property(key: str, value: str) 将在相关节点的 test-case 中添加 Property 标签。

def test_basic(record_pipelines_property):
    record_pipelines_property("test", "value")
    assert 1 == 1

add_pipelines_attachment

通过调用 add_pipelines_attachment(path: str, description: str) 函数并传递文件路径和描述来向节点测试用例添加附件。

附件可以在测试用例的“附件”标签下查看。

def test_attachment(add_pipelines_attachment):
    pth = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'fixture.gif')
    add_pipelines_attachment(path, "peanut butter jelly time")
    assert 1 == 1

使用自动代码覆盖率上传

从版本 0.6.0 开始,pytest 将成功覆盖数据上传到 Azure 支持的格式,并将 htmlcov 目录打包成 ZIP 文件作为构建的工件。

要使用此功能,请添加带有(可选但必需)代码文件路径的 –cov 标志,并确保添加 –cov-report html 作为选项。

- script: |
   pip install pytest pytest-azurepipelines pytest-cov
   pytest tests/ --cov my_project --cov-report html

要禁用覆盖上传,请使用 –no-coverage-upload 标志。

在 Docker 中运行

插件会自动检测是否在 docker 容器中运行。它将应用路径映射,并使用已绑定挂载到 docker 容器的宿主机的路径将它们报告回 Azure Pipelines。

如果使用绑定挂载到 pytest 输出写入的路径,则无需配置。同时确保使用宿主访问权限写入文件,这可以通过将宿主账户的用户和组提供给运行命令来完成。

docker run --user "$(id -u):$(id -g)" ...

要禁用 docker 发现,请使用 –no-docker-discovery 标志。

贡献

欢迎贡献。

许可证

根据 MIT 许可证分发,“pytest-azurepipelines”是免费和开源软件

问题

如果您遇到任何问题,请提交问题,并附上详细的描述。

项目详情


下载文件

下载您平台的文件。如果您不确定选择哪个,请了解有关 安装包 的更多信息。

源分发

pytest-azurepipelines-1.0.5.tar.gz (9.7 kB 查看哈希值)

上传时间 源代码

构建版本

pytest_azurepipelines-1.0.5-py3-none-any.whl (9.7 kB 查看哈希值)

上传时间 Python 3

支持者