加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pytests_collect.py 675 Bytes
一键复制 编辑 原始数据 按行查看 历史
Disconnect3d 提交于 2020-08-15 21:27 . Py3k (#817)
import os
import sys
import pytest
TESTS_PATH = os.path.join(
os.path.dirname(os.path.realpath(__file__)),
'tests'
)
class CollectTestFunctionNames:
"""See https://github.com/pytest-dev/pytest/issues/2039#issuecomment-257753269"""
def __init__(self):
self.collected = []
def pytest_collection_modifyitems(self, items):
for item in items:
self.collected.append(item.nodeid)
collector = CollectTestFunctionNames()
pytest.main(['--collect-only', TESTS_PATH], plugins=[collector])
print('Listing collected tests:')
for nodeid in collector.collected:
print('Test:', nodeid)
# easy way to exit GDB session
sys.exit(0)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化