我没有安装teamcity或teamcity消息。
测试运行器是pytest。
它们确实包含有用的信息。只想知道它们来自哪里。
Python 2.7.9 in pyenv
PyCharm 2019.1.2 Pro
Build #PY-191.7141.48
Macbook pro Mojave
Pytest 4.5.0
答案 0 :(得分:2)
它是teamcity.messages.TeamcityServiceMessages
模块中使用的pytest_plugin.py
包装对象。搜索self.teamcity
用法,例如
def pytest_collection_modifyitems(self, session, config, items):
self.teamcity.testCount(len(items))
报告收集的测试总数以进行进度计算等。