Update Phpunit Configuration File
After upgrading, Phpunit indicates that the current schema is deprecated. Used Phpunit's own `--migrate-configuration` option to create current version.
This commit is contained in:
parent
f46e3a1916
commit
f0f7449e2d
|
|
@ -1,25 +1,18 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<phpunit
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" bootstrap="./tests/bootstrap.php" backupGlobals="true" colors="true" cacheResultFile="/tmp/.phpspreadsheet.phpunit.result.cache">
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
<coverage>
|
||||||
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
|
<include>
|
||||||
bootstrap="./tests/bootstrap.php"
|
<directory suffix=".php">./src</directory>
|
||||||
backupGlobals="true"
|
</include>
|
||||||
colors="true"
|
<exclude>
|
||||||
cacheResultFile="/tmp/.phpspreadsheet.phpunit.result.cache"
|
<directory>./src/PhpSpreadsheet/Shared/JAMA</directory>
|
||||||
>
|
<directory>./src/PhpSpreadsheet/Writer/PDF</directory>
|
||||||
<php>
|
</exclude>
|
||||||
<ini name="memory_limit" value="2048M"/>
|
</coverage>
|
||||||
</php>
|
<php>
|
||||||
<testsuite name="PhpSpreadsheet Unit Test Suite">
|
<ini name="memory_limit" value="2048M"/>
|
||||||
<directory>./tests/PhpSpreadsheetTests</directory>
|
</php>
|
||||||
</testsuite>
|
<testsuite name="PhpSpreadsheet Unit Test Suite">
|
||||||
<filter>
|
<directory>./tests/PhpSpreadsheetTests</directory>
|
||||||
<whitelist>
|
</testsuite>
|
||||||
<directory suffix=".php">./src</directory>
|
|
||||||
<exclude>
|
|
||||||
<directory>./src/PhpSpreadsheet/Shared/JAMA</directory>
|
|
||||||
<directory>./src/PhpSpreadsheet/Writer/PDF</directory>
|
|
||||||
</exclude>
|
|
||||||
</whitelist>
|
|
||||||
</filter>
|
|
||||||
</phpunit>
|
</phpunit>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue