第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

pytest html - 將圖像從測(cè)試文件傳遞到 conftest.py 中的掛鉤

pytest html - 將圖像從測(cè)試文件傳遞到 conftest.py 中的掛鉤

狐的傳說(shuō) 2022-12-06 15:31:57
我有一個(gè)通過(guò) pytest-html 生成 HTML 輸出的測(cè)試。我收到了報(bào)告,但我想添加對(duì)失敗和預(yù)期圖像的引用;我將它們保存在我的主 test.py 文件中,并將鉤子添加到conftest.py.現(xiàn)在,我不知道如何將這些圖像傳遞給函數(shù);執(zhí)行測(cè)試后調(diào)用掛鉤;目前我正在對(duì)輸出文件進(jìn)行硬編碼并附加它們;但我想從測(cè)試中傳遞圖像的路徑,特別是因?yàn)槲倚枰帉?xiě)更多測(cè)試,這些測(cè)試可能保存在我常用文件夾的其他地方,并且可能有不同的名稱(chēng)。這是我在 conftest.py 中的鉤子@pytest.mark.hookwrapperdef pytest_runtest_makereport(item, call):    timestamp = datetime.now().strftime('%H-%M-%S')    pytest_html = item.config.pluginmanager.getplugin('html')    outcome = yield    report = outcome.get_result()    extra = getattr(report, 'extra', [])    if report.when == 'call':        # Attach failure image, hardcoded...how do I pass this from the test?        extra.append(pytest_html.extras.image('/tmp/image1.png'))        # test report html        extra.append(pytest_html.extras.url('http://www.theoutput.com/'))        xfail = hasattr(report, 'wasxfail')        if (report.skipped and xfail) or (report.failed and not xfail):            # only add additional data on failure            # Same as above, hardcoded but I want to pass the reference image from the test            extra.append(pytest_html.extras.image('/tmp/image2.png'))            extra.append(pytest_html.extras.html('<div>Additional HTML</div>'))        report.extra = extra我如何從我的 pytest 測(cè)試文件傳遞給鉤子,一個(gè)包含要附加的圖像路徑的變量?
查看完整描述

1 回答

?
慕姐8265434

TA貢獻(xiàn)1813條經(jīng)驗(yàn) 獲得超2個(gè)贊

我找到了一個(gè)解決方法,雖然它并不漂亮。


在我的測(cè)試文件中在模塊級(jí)別添加一個(gè)變量,允許我使用item.module.varname,所以如果我varname在我的模塊測(cè)試中設(shè)置,然后在測(cè)試中分配它;我可以訪(fǎng)問(wèn)它pytest_runtest_makereport


在測(cè)試文件.py


import pytest


myvar1 = None

myvar2 = None


class VariousTests(unittest.TestCase):


    def test_attachimages():


        global myvar1

        global myvar2


        myvar1 = "/tmp/img1.png"

        myvar2 = "/tmp/img2.png"

在 conftest.py 中


@pytest.mark.hookwrapper

def pytest_runtest_makereport(item, call):


    timestamp = datetime.now().strftime('%H-%M-%S')


    pytest_html = item.config.pluginmanager.getplugin('html')

    outcome = yield

    report = outcome.get_result()

    extra = getattr(report, 'extra', [])

    if report.when == 'call':

        # Attach failure image

        img1 = item.module.myvar1

        img2 = item.module.myvar2

        extra.append(pytest_html.extras.png(img1))

        # test report html

        extra.append(pytest_html.extras.url('http://www.theoutput.com/'))

        xfail = hasattr(report, 'wasxfail')

        if (report.skipped and xfail) or (report.failed and not xfail):

            # only add additional data on failure

            # Same as above, hardcoded but I want to pass the reference image from the test

            extra.append(pytest_html.extras.png(img2))

            extra.append(pytest_html.extras.html('<div>Additional HTML</div>'))

        report.extra = extra


查看完整回答
反對(duì) 回復(fù) 2022-12-06
  • 1 回答
  • 0 關(guān)注
  • 187 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)