rector/phpunit.xml

16 lines
458 B
XML
Raw Normal View History

2017-07-15 19:01:21 +02:00
<phpunit
2018-02-22 15:25:57 +01:00
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
2017-11-10 23:14:17 +01:00
bootstrap="tests/bootstrap.php"
2017-07-15 19:01:21 +02:00
colors="true"
verbose="true"
>
<testsuites>
2018-02-22 16:17:00 +01:00
<testsuite name="all-except-phar">
<directory>tests</directory>
2018-02-21 15:43:55 +01:00
<directory>packages/*/tests</directory>
<exclude>tests/Phar</exclude>
</testsuite>
</testsuites>
2017-07-15 19:01:21 +02:00
</phpunit>