使用标记收集py.test测试信息

时间:2016-10-12 06:21:29

标签: pytest

我正在使用py.test,我想获得包含标记信息的测试列表。 当我使用 - 仅收集标志时,我得到了测试功能。有没有办法为每个测试获得指定的标记?

基于 Frank T 的回答,我创建了一个变通方法代码示例:

from _pytest.mark import MarkInfo, MarkDecorator
import json


def pytest_addoption(parser):
    parser.addoption(
        '--collect-only-with-markers',
        action='store_true',
        help='Collect the tests with marker information without executing them'
    )


def pytest_collection_modifyitems(session, config, items):
    if config.getoption('--collect-only-with-markers'):
        for item in items:
            data = {}

            # Collect some general information
            if item.cls:
                data['class'] = item.cls.__name__
            data['name'] = item.name
            if item.originalname:
                data['originalname'] = item.originalname
            data['file'] = item.location[0]

            # Get the marker information
            for key, value in item.keywords.items():
                if isinstance(value, (MarkDecorator, MarkInfo)):
                    if 'marks' not in data:
                        data['marks'] = []

                    data['marks'].append(key)

            print(json.dumps(data))

        # Remove all items (we don't want to execute the tests)
        items.clear()

2 个答案:

答案 0 :(得分:1)

我不认为pytest具有内置行为来列出测试函数以及这些测试的标记信息。 --markers命令会列出所有已注册的标记,但这不是您想要的。我简要地查看了list of pytest plugins,并没有看到任何看起来相关的内容。

您可以编写自己的pytest插件来列出测试以及标记信息。 Here是关于编写pytest插件的文档。

我会尝试使用"pytest_collection_modifyitems"挂钩。它传递了一个收集的所有测试的列表,并且它不需要修改它们。 (Here是所有挂钩的列表。)

如果您知道要查找的标记的名称,则传入该挂钩的测试会使用get_marker()方法(例如,请参阅this code)。当我查看该代码时,我找不到用于列出所有标记的官方API。我发现这是为了完成工作:test.keywords.__dict__['_markers'](请参阅herehere)。

答案 1 :(得分:1)

您可以在name对象

中按request.function.pytestmark属性查找标记
@pytest.mark.scenarious1
@pytest.mark.scenarious2
@pytest.mark.scenarious3
def test_sample():
    pass

@pytest.fixture(scope='function',autouse=True)
def get_markers():
    print([marker.name for marker in request.function.pytestmark])

>>> ['scenarious3', 'scenarious2', 'scenarious1']

请注意,默认情况下它们以颠倒的顺序列出。