mirror of
https://github.com/doctrine/automatic-releases.git
synced 2026-03-23 22:32:12 +01:00
21 lines
527 B
XML
21 lines
527 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
|
|
colors="true"
|
|
verbose="true"
|
|
failOnRisky="true"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="doctrine/automatic-releases unit tests">
|
|
<directory>./test/unit</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist>
|
|
<directory>src</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|