-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
After upgrading, Phpunit indicates that the current schema is deprecated. Used Phpunit's own `--migrate-configuration` option to create current version.
- Loading branch information
Showing
1 changed file
with
16 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,18 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phpunit | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" | ||
bootstrap="./tests/bootstrap.php" | ||
backupGlobals="true" | ||
colors="true" | ||
cacheResultFile="/tmp/.phpspreadsheet.phpunit.result.cache" | ||
> | ||
<php> | ||
<ini name="memory_limit" value="2048M"/> | ||
</php> | ||
<testsuite name="PhpSpreadsheet Unit Test Suite"> | ||
<directory>./tests/PhpSpreadsheetTests</directory> | ||
</testsuite> | ||
<filter> | ||
<whitelist> | ||
<directory suffix=".php">./src</directory> | ||
<exclude> | ||
<directory>./src/PhpSpreadsheet/Shared/JAMA</directory> | ||
<directory>./src/PhpSpreadsheet/Writer/PDF</directory> | ||
</exclude> | ||
</whitelist> | ||
</filter> | ||
<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"> | ||
<coverage> | ||
<include> | ||
<directory suffix=".php">./src</directory> | ||
</include> | ||
<exclude> | ||
<directory>./src/PhpSpreadsheet/Shared/JAMA</directory> | ||
<directory>./src/PhpSpreadsheet/Writer/PDF</directory> | ||
</exclude> | ||
</coverage> | ||
<php> | ||
<ini name="memory_limit" value="2048M"/> | ||
</php> | ||
<testsuite name="PhpSpreadsheet Unit Test Suite"> | ||
<directory>./tests/PhpSpreadsheetTests</directory> | ||
</testsuite> | ||
</phpunit> |