首页
/ Python Unit Test Reporting to TeamCity 技术文档

Python Unit Test Reporting to TeamCity 技术文档

2024-12-26 09:21:11作者:何举烈Damon

本文档旨在帮助用户了解如何使用 teamcity-messages 项目,将 Python 单元测试结果报告到 TeamCity 持续集成服务器。文档内容包括安装指南、使用说明、API 使用文档以及项目安装方式。

1. 安装指南

使用 pip 安装

你可以通过 pip 命令安装 teamcity-messages 包:

pip install teamcity-messages

从源码安装

你也可以从源码安装该项目:

python setup.py install

2. 项目的使用说明

teamcity-messages 包通过发送服务消息来向 TeamCity 报告构建状态。以下是如何在不同测试框架中使用该包的说明。

unittest

如果你使用 Python 自带的 unittest 框架,可以通过修改测试运行器来集成 TeamCity 报告功能:

import unittest
from teamcity import is_running_under_teamcity
from teamcity.unittestpy import TeamcityTestRunner

class Test(unittest.TestCase):
    ...

if __name__ == '__main__':
    if is_running_under_teamcity():
        runner = TeamcityTestRunner()
    else:
        runner = unittest.TextTestRunner()
    unittest.main(testRunner=runner)

你也可以在命令行中使用以下命令来运行测试:

python -m teamcity.unittestpy

nose

在 TeamCity 构建环境下,nose 的测试状态报告会自动启用。

py.test

在 TeamCity 构建环境下,py.test 的测试状态报告会自动启用。

Django

对于 Django 1.6+,你可以在 settings.py 中修改 TEST_RUNNER 设置,使用 TeamcityDjangoRunner 替代默认的 DiscoverRunner

TEST_RUNNER = "teamcity.django.TeamcityDjangoRunner"

flake8

在 TeamCity 构建环境下,flake8 的测试状态报告会自动启用。

PyLint

在运行 pylint 时,添加 --output-format=teamcity.pylint_reporter.TeamCityReporter 参数:

pylint --output-format=teamcity.pylint_reporter.TeamCityReporter

tox

tox 的测试虚拟环境中传递 TEAMCITY_VERSION 环境变量:

[testenv]
passenv = TEAMCITY_VERSION

Twisted trial

在运行 trial 时,添加 --reporter=teamcity 参数:

trial --reporter=teamcity

Behave

对于 Behave 1.2.6,你可以通过以下代码启用 TeamCity 报告:

from behave.formatter import _registry
from behave.configuration import Configuration
from behave.runner import Runner
from teamcity.jb_behave_formatter import TeamcityFormatter

_registry.register_as("TeamcityFormatter", TeamcityFormatter)
configuration = Configuration()
configuration.format = ["TeamcityFormatter"]
configuration.stdout_capture = False
configuration.stderr_capture = False
Runner(configuration).run()

3. 项目 API 使用文档

teamcity-messages 提供了以下主要 API:

  • is_running_under_teamcity(): 检查当前是否在 TeamCity 环境下运行。
  • TeamcityTestRunner: 用于 unittest 框架的测试运行器。
  • TeamcityDjangoRunner: 用于 Django 的测试运行器。
  • TeamcityFormatter: 用于 Behave 的格式化器。

4. 项目安装方式

使用 pip 安装

pip install teamcity-messages

从源码安装

python setup.py install

通过以上步骤,你可以成功安装并使用 teamcity-messages 包,将 Python 单元测试结果报告到 TeamCity 持续集成服务器。

热门项目推荐
相关项目推荐

项目优选

收起
open-eBackupopen-eBackup
open-eBackup是一款开源备份软件,采用集群高扩展架构,通过应用备份通用框架、并行备份等技术,为主流数据库、虚拟化、文件系统、大数据等应用提供E2E的数据备份、恢复等能力,帮助用户实现关键数据高效保护。
HTML
74
55
openHiTLSopenHiTLS
旨在打造算法先进、性能卓越、高效敏捷、安全可靠的密码套件,通过轻量级、可剪裁的软件技术架构满足各行业不同场景的多样化要求,让密码技术应用更简单,同时探索后量子等先进算法创新实践,构建密码前沿技术底座!
C
50
39
HarmonyOS-ExamplesHarmonyOS-Examples
本仓将收集和展示仓颉鸿蒙应用示例代码,欢迎大家投稿,在仓颉鸿蒙社区展现你的妙趣设计!
Cangjie
258
66
mybatis-plusmybatis-plus
mybatis 增强工具包,简化 CRUD 操作。 文档 http://baomidou.com 低代码组件库 http://aizuda.com
Java
20
0
Cangjie-ExamplesCangjie-Examples
本仓将收集和展示高质量的仓颉示例代码,欢迎大家投稿,让全世界看到您的妙趣设计,也让更多人通过您的编码理解和喜爱仓颉语言。
Cangjie
177
41
advanced-javaadvanced-java
Advanced-Java是一个Java进阶教程,适合用于学习Java高级特性和编程技巧。特点:内容深入、实例丰富、适合进阶学习。
JavaScript
399
103
RuoYi-VueRuoYi-Vue
🎉 基于SpringBoot,Spring Security,JWT,Vue & Element 的前后端分离权限管理系统,同时提供了 Vue3 的版本
Java
168
37
RuoYi-Cloud-Vue3RuoYi-Cloud-Vue3
🎉 基于Spring Boot、Spring Cloud & Alibaba、Vue3 & Vite、Element Plus的分布式前后端分离微服务架构权限管理系统
Vue
26
18
hyperionhyperion
仓颉语言实现的TCP通信框架,支持添加自定义编解码器,积木式添加IoFilter处理入栈出栈消息。仓颉redis-sdk和activemq4cj项目使用了该框架。
Cangjie
113
16
CangjieCommunityCangjieCommunity
为仓颉编程语言开发者打造活跃、开放、高质量的社区环境
Markdown
892
0