gpt4 book ai didi

jenkins - 使用 Phing 运行 phpunit 测试时出错

转载 作者:行者123 更新时间:2023-12-03 17:38:18 24 4
gpt4 key购买 nike

Jenkins 版本 - 2.22

Phing 版本 - 0.13.3

PHPUnit 版本 - 5.7.19

phpunit.xml

<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="bootstrap/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="Application Test Suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./app/Managers</directory>
</whitelist>
</filter>
<php>
<env name="APP_ENV" value="testing"/>
<env name="CACHE_DRIVER" value="array"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="QUEUE_DRIVER" value="sync"/>
</php>
</phpunit>

build.xml
...
<coverage-setup database="./report/coverage/database">
<fileset id="coverageFileSet" dir="./app/Managers">
<include name="**/*Manager*.php" />
</fileset>
</coverage-setup>
<phpunit pharlocation="./vendor/phpunit/phpunit/phpunit" configuration="./phpunit.xml" printsummary="true" haltonerror="true" haltonfailure="true" codecoverage="true">
<formatter type="clover" outfile="report/coverage/clover.xml"/>
</phpunit>
<coverage-report outfile="report/coverage/coverage.xml">
<report todir="report/coverage"/>
</coverage-report>
...

当我运行 phing目标在 Jenkins ,我收到以下错误。 unrecognized option -- b
我究竟做错了什么?或任何帮助如何调试这个问题?

注意 - 这是 laravel-5.4应用程序,当我运行时 phpunit从应用程序的根文件夹它的工作。

最佳答案

您说您使用的是 Phing 版本 - 0.13.3,这不太合理。您应该尝试使用 Phing 3.0.0-alpha3 ,它有很多改进。

另外,我认为以下答案可以帮助您:Phing and PHPUnit, just cant get even the most basic thing running

关于jenkins - 使用 Phing 运行 phpunit 测试时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42801164/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com