Pycharm中带有pytest运行/调试日志的## teamcity [...消息来自哪里?

时间:2019-07-09 02:15:15

标签: python logging pycharm pytest

我没有安装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

1 个答案:

答案 0 :(得分:2)

它是teamcity.messages.TeamcityServiceMessages模块中使用的pytest_plugin.py包装对象。搜索self.teamcity用法,例如

def pytest_collection_modifyitems(self, session, config, items):
    self.teamcity.testCount(len(items))

报告收集的测试总数以进行进度计算等。