mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
a58416b6f6
- Removed PHP 5.5. build (no longer supported) - Removed PG and SQLite tests (tested through installer nightly) - Added code coverage and linting tests - Fixed linting errors
17 lines
427 B
XML
17 lines
427 B
XML
<phpunit bootstrap="framework/tests/bootstrap.php" colors="true">
|
|
|
|
<testsuite name="Default">
|
|
<directory>tests</directory>
|
|
</testsuite>
|
|
|
|
<filter>
|
|
<whitelist addUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">.</directory>
|
|
<exclude>
|
|
<directory suffix=".php">tests/</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
|
|
</phpunit>
|