加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
phpunit.xml 1.04 KB
一键复制 编辑 原始数据 按行查看 历史
Ankit Pokhrel 提交于 2019-08-24 10:22 . Remove unused syntaxCheck config
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
bootstrap="tests/bootstrap.php"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="true">
<testsuites>
<testsuite name="Unit">
<directory>./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src/</directory>
<exclude>
<directory suffix=".php">./src/Commands</directory>
<directory suffix=".php">./src/Config</directory>
</exclude>
</whitelist>
</filter>
<php>
<env name="REDIS_HOST" value="127.0.0.1"/>
<env name="REDIS_PORT" value="6379"/>
<env name="REDIS_TIMEOUT" value="0.5"/>
<env name="REDIS_DATABASE" value="15"/>
</php>
</phpunit>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化