mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-19 15:45:43 +01:00
23 lines
660 B
XML
23 lines
660 B
XML
<phpunit
|
|
bootstrap="tests/bootstrap.php"
|
|
colors="true"
|
|
verbose="true"
|
|
>
|
|
<!-- tests directories to run -->
|
|
<testsuite>
|
|
<directory>packages/*/tests</directory>
|
|
<directory>tests</directory>
|
|
</testsuite>
|
|
<!-- source to check coverage for -->
|
|
<filter>
|
|
<whitelist addUncoveredFilesFromWhitelist="false">
|
|
<directory suffix="*.php">packages/*/src</directory>
|
|
<directory>src</directory>
|
|
<exclude>
|
|
<directory>../vendor</directory>
|
|
<directory>../tests/**/*Source/**</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|