mirror of
https://github.com/filamentphp/filament.git
synced 2026-08-29 03:09:12 +08:00
43 lines
1.1 KiB
XML
43 lines
1.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit
|
|
backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
bootstrap="vendor/autoload.php"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnFailure="false"
|
|
verbose="true"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="Filament Test Suite">
|
|
<directory suffix=".php">./tests/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<coverage>
|
|
<include>
|
|
<directory suffix=".php">./src</directory>
|
|
</include>
|
|
|
|
<report>
|
|
<clover outputFile="build/logs/clover.xml"/>
|
|
<html outputDirectory="build/coverage"/>
|
|
<text outputFile="build/coverage.txt"/>
|
|
</report>
|
|
</coverage>
|
|
|
|
<logging>
|
|
<junit outputFile="build/report.junit.xml"/>
|
|
</logging>
|
|
|
|
<php>
|
|
<env name="APP_ENV" value="self-testing"/>
|
|
<env name="APP_KEY" value="base64:yk+bUVuZa1p86Dqjk9OjVK2R1pm6XHxC6xEKFq8utH0="/>
|
|
<env name="DB_CONNECTION" value="testing"/>
|
|
</php>
|
|
</phpunit>
|