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

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

為什么 PHPUnit 9 不期望記錄 phpunit.xml.dist 的 log 子元素

為什么 PHPUnit 9 不期望記錄 phpunit.xml.dist 的 log 子元素

PHP
弒天下 2023-10-21 15:56:37
我正在致力于將 PHP 應(yīng)用程序(超過 10 年)過渡到 PHP 7.4,我們目前正在應(yīng)用程序的 PHP 7.4 分支上實現(xiàn)持續(xù)集成。我們決定使用 PHP 當前穩(wěn)定版本支持的 PHPUnit 版本。因此我們將 PHP 7.4 分支的 ci 測試工作升級到了 PHPUnit 9.3。我們根據(jù)文檔進行了所有必要的更改,但我們因一個不知道如何修復(fù)的警告而被阻止(假設(shè)執(zhí)行了測試并且在正確的位置發(fā)布了報告)  Warning - The configuration file did not pass validation!  The following problems have been detected:  Line 38:  - Element 'log': This element is not expected..我在下面分享我們的 PHPUnit 配置以及我們用來啟動它的命令,有人能發(fā)現(xiàn)它有什么問題嗎?phpunit -c phpunit.xml.dist<?xml version="1.0" encoding="UTF-8"?><phpunit    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"    xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/9.3/phpunit.xsd"    colors="true"    bootstrap="tests/bootstrap.php">    <testsuites>        <testsuite name="Unit Tests">            <directory>tests/</directory>        </testsuite>    </testsuites>    <coverage>        <include>            <directory suffix=".php">api</directory>        </include>    </coverage>    <logging>        <log type="junit" target="build/unit_report.xml"/>    </logging></phpunit>
查看完整描述

2 回答

?
慕尼黑5688855

TA貢獻1848條經(jīng)驗 獲得超2個贊

<log>元素在 PHPUnit 9.3 中也發(fā)生了變化。

你需要改變


<logging>

? <log type="junit" target="build/unit_report.xml"/>

</logging>


<logging>

? <junit outputFile="build/unit_report.xml"/>

</logging>

話雖這么說,我強烈建議使用 PHPUnit 的--migrate-configurationCLI 選項自動將您的配置文件轉(zhuǎn)換為新格式。


查看完整回答
反對 回復(fù) 2023-10-21
?
慕田峪7331174

TA貢獻1828條經(jīng)驗 獲得超13個贊

PHPUnit 9.5.x 中已更改


嘗試以下任何一個


<logging>

? ? <testdoxHtml outputFile="tests/coverage.html"/>

? ? <testdoxXml outputFile="tests/coverage.xml"/>

? ? <text outputFile="tests/coverage.txt"/>

</logging>


查看完整回答
反對 回復(fù) 2023-10-21
  • 2 回答
  • 0 關(guān)注
  • 189 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

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

公眾號

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