NelmioApiDocBundle/phpunit.xml.dist

39 lines
1.1 KiB
Plaintext
Raw Normal View History

2016-06-30 23:30:37 +02:00
<?xml version="1.0" encoding="UTF-8"?>
2016-07-12 00:33:55 +02:00
2016-06-30 23:30:37 +02:00
<!-- http://phpunit.de/manual/4.1/en/appendixes.configuration.html -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2016-07-12 00:33:55 +02:00
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.6/phpunit.xsd"
2016-06-30 23:30:37 +02:00
backupGlobals="false"
colors="true"
failOnWarning="true"
failOnRisky="true"
stopOnFailure="false"
2016-06-30 23:30:37 +02:00
bootstrap="vendor/autoload.php"
>
<php>
2017-11-27 14:40:22 +01:00
<env name="SHELL_VERBOSITY" value="-1" />
2016-06-30 23:30:37 +02:00
<ini name="error_reporting" value="-1" />
2019-11-22 14:07:00 +01:00
<env name="SYMFONY_DEPRECATIONS_HELPER" value="max[self]=0" />
2016-06-30 23:30:37 +02:00
</php>
2016-07-12 00:33:55 +02:00
2016-06-30 23:30:37 +02:00
<testsuites>
2016-07-12 00:33:55 +02:00
<testsuite name="Project Test Suite">
<directory>Tests</directory>
2016-06-30 23:30:37 +02:00
</testsuite>
</testsuites>
2016-07-12 00:33:55 +02:00
2016-06-30 23:30:37 +02:00
<filter>
<whitelist>
2016-07-12 00:33:55 +02:00
<directory>.</directory>
2016-06-30 23:30:37 +02:00
<exclude>
2016-07-12 00:33:55 +02:00
<directory>Tests</directory>
<directory>vendor</directory>
2016-06-30 23:30:37 +02:00
</exclude>
</whitelist>
</filter>
2022-06-11 09:54:36 +02:00
<php>
<ini name="memory_limit" value="512M" />
</php>
2016-06-30 23:30:37 +02:00
</phpunit>