Is there a custom way to collect pytest results?

蓝咒 提交于 2021-02-11 15:41:07

问题


I want to see the results of the tests that just run such that I can pipe the information e.g. into a custom file. This will be used later on to automatically parse the pytest results.


回答1:


Yes there is a way by creating / using the conftest.py. In the example a dict with the results will be created and after all tests have run the results will printed.

from collections import OrderedDict
test_results = OrderedDict()

def get_current_test():
    """Just a helper function to extract the current test"""
    full_name = os.environ.get('PYTEST_CURRENT_TEST').split(' ')[0]
    test_file = full_name.split("::")[0].split('/')[-1].split('.py')[0]
    test_name = full_name.split("::")[1]
    return full_name, test_file, test_name


@pytest.hookimpl(tryfirst=True, hookwrapper=True)
def pytest_runtest_makereport(item, call):
    """The actual wrapper that gets called before and after every test"""
    global test_results
    outcome = yield
    rep = outcome.get_result()

    # only check the result of the test
    if rep.when == "call":
        full_name, test_file, test_name = get_current_test()
        test_name_msg = f"{test_name}_msg"
        if rep.failed:
            test_results[test_name] = "Failure"
            # return the last error msg either by pytest.fail or from any exception raised
            test_results[test_name_msg] = f"{call.excinfo.typename} - {call.excinfo.value}"
        else:
            test_results[test_name] = "Success"
            test_results[test_name_msg] = ''

def pytest_unconfigure(config):
    """Called when pytest is about to end. Can be used to print the result dict or 
    to pipe the data into a file"""
    print(test_results)


来源:https://stackoverflow.com/questions/61525814/is-there-a-custom-way-to-collect-pytest-results

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!