2

我知道有用于性能测试和 py.test 分析的插件,但是有没有办法生成在测试后报告或以某种方式可访问的任意值?

想象一下我有一个这样的测试

def test_minimum_learning_rate():
    """Make some fancy stuff and generate a learning performance value"""
    learning_rate = fancy_learning_function().rate
    pytest.report("rate", learning_rate)
    assert learning_rate > 0.5

pytest.report(..)条线是我想要(但不在那里,是吗?)

现在,我希望将一些minimum_learning_rate[rate]内容与实际测试结果一起写入报告(或者至少在屏幕上)。

詹金斯的一些插件真的很好,它可以从这些数据中创建一个漂亮的图表。

有没有一个典型的措辞?我一直在寻找kpi,,arbitrary valuesuser defined values还没有任何运气..

4

1 回答 1

3

如果您只想输出一些调试值,那么print结合-s参数的调用就足够了:

def test_spam():
    print('debug')
    assert True

运行pytest -s

collected 1 item                                                                                                                                                                                                  

test_spam.py debug
.

如果您正在寻找更好地集成到pytest执行流程中的解决方案,请编写自定义挂钩。下面的例子应该给你一些想法。

每次测试执行后打印自定义行

# conftest.py

def pytest_report_teststatus(report, config):
    if report.when == 'teardown':  # you may e.g. also check the outcome here to filter passed or failed tests only
        rate = getattr(config, '_rate', None)
        if rate is not None:
            terminalreporter = config.pluginmanager.get_plugin('terminalreporter')
            terminalreporter.ensure_newline()
            terminalreporter.write_line(f'test {report.nodeid}, rate: {rate}', red=True, bold=True)

测试:

def report(rate, request):
    request.config._rate = rate

def test_spam(request):
    report(123, request)

def test_eggs(request):
    report(456, request)

输出:

collected 2 items                                                                                                                                                                                                 

test_spam.py .
test test_spam.py::test_spam, rate: 123

test_spam.py .
test test_spam.py::test_eggs, rate: 456
===================================================== 2 passed in 0.01 seconds =====================================================

测试执行后收集数据并打印

# conftest.py

def pytest_configure(config):
    config._rates = dict()

def pytest_terminal_summary(terminalreporter, exitstatus, config):
    terminalreporter.ensure_newline()
    for testid, rate in config._rates.items():
        terminalreporter.write_line(f'test {testid}, rate: {rate}', yellow=True, bold=True)

测试:

def report(rate, request):
    request.config._rates[request.node.nodeid] = rate

def test_spam(request):
    report(123, request)

def test_eggs(request):
    report(456, request)

输出:

collected 2 items                                                                                                                  

test_spam.py ..

test test_spam.py::test_spam, rate: 123
test test_spam.py::test_eggs, rate: 456
===================================================== 2 passed in 0.01 seconds =====================================================

在 JUnit XML 报告中附加数据

使用record_property夹具:

def test_spam(record_property):
    record_property('rate', 123)

def test_eggs(record_property):
    record_property('rate', 456)

结果报告:

$ pytest --junit-xml=report.xml
...
$ xmllint --format report.xml
<testsuite errors="0" failures="0" name="pytest" skipped="0" tests="2" time="0.056">
  <testcase classname="test_spam" file="test_spam.py" line="12" name="test_spam" time="0.001">
    <properties>
      <property name="rate" value="123"/>
    </properties>
  </testcase>
  <testcase classname="test_spam" file="test_spam.py" line="15" name="test_eggs" time="0.001">
    <properties>
      <property name="rate" value="456"/>
    </properties>
  </testcase>
</testsuite>
于 2019-06-07T14:36:19.227 回答