Initial Drupal 11 with DDEV setup
This commit is contained in:
27
web/core/tests/PHPStan/phpunit.xml.dist
Normal file
27
web/core/tests/PHPStan/phpunit.xml.dist
Normal file
@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
colors="true"
|
||||
beStrictAboutTestsThatDoNotTestAnything="true"
|
||||
beStrictAboutOutputDuringTests="true"
|
||||
beStrictAboutChangesToGlobalState="true"
|
||||
failOnWarning="true"
|
||||
cacheResult="false"
|
||||
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd">
|
||||
<php>
|
||||
<!-- Set error reporting to E_ALL. -->
|
||||
<ini name="error_reporting" value="32767"/>
|
||||
<!-- Do not limit the amount of memory tests take to run. -->
|
||||
<ini name="memory_limit" value="-1"/>
|
||||
</php>
|
||||
<testsuites>
|
||||
<testsuite name="PHPStan tests">
|
||||
<directory>tests</directory>
|
||||
</testsuite>
|
||||
</testsuites>
|
||||
<!-- Settings for coverage reports. -->
|
||||
<source>
|
||||
<include>
|
||||
<directory>Rules</directory>
|
||||
</include>
|
||||
</source>
|
||||
</phpunit>
|
||||
Reference in New Issue
Block a user