1

我正在尝试从默认生成的“Automated Run TIMESTAMP”自动重命名测试运行。

在理想情况下,我希望 pytest 运行器从测试目录中的 json 文件中获取部分名称,并将其与我正在运行的测试的相对路径结合起来。如果这有什么不同的话,测试就在一个虚拟环境中。

相对路径:

workspace/functional/auth/Test.py

test.json 的内容(位于 workspace/ 中):

{ "testrail" : "Project Name" }

命令提示符执行(从工作区/目录):

$ py.test --testrail=testrail.cfg functional/auth/Test.py

Testrails 中的预期名称是“项目名称 - 功能 - Auth TIMESTAMP”

4

1 回答 1

1

好的,所以我能够找到一种自动重命名测试的方法,而无需从外部文件导入。

在 workspace/venv/test/lib/python2.7/site-packages/pytest_testrail/plugin.py 中更改它 - (路径会有所不同)

import os

def testrun_name(location):
"""
Returns testrun name with timestamp
Edited to grab the directory and name the test based off of that
"""
projects = {mapping of projects}
suite = {mapping of sub folders to function names}

absolute_path = os.getcwd()
project_dir = absolute_path.split('workspace/')[1]

now = datetime.utcnow()
return '{} - {} Tests {}'.format(projects[project_dir],suite[location],now.strftime(DT_FORMAT))

@pytest.hookimpl(trylast=True)
def pytest_collection_modifyitems(self, session, config, items):

    # Create list of locations of the test cases
    locations = []
    location = 'project'
    for item in items:
        loc = item.location[0].split('/')[1]
        if loc not in locations:
            locations.append(loc)
    # Remove the Testrails location
    if '..' in locations:
        locations.remove('..')
    # Check length of list to determine if running individual test
    if len(locations) == 1:
        location = locations[0]

    tr_keys = get_testrail_keys(items)
    self.create_test_run(
        self.assign_user_id,
        self.project_id,
        self.suite_id,
        testrun_name(location),
        tr_keys
    )

这导致来自工作区/功能/身份验证/Test.py 的测试运行被命名为“功能 - 身份验证测试 TIMESTAMP”,来自工作区/功能的测试被命名为“功能 - 项目测试 TIMESTAMP”

于 2016-11-28T18:11:22.433 回答