lab/drupal-nix-flake/phpunit.xml.dist

30 lines
860 B
Text
Raw Normal View History

2025-04-23 21:11:54 +01:00
<?xml version="1.0" encoding="UTF-8"?>
2025-04-23 21:11:54 +01:00
<phpunit
beStrictAboutChangesToGlobalState="true"
beStrictAboutOutputDuringTests="false"
2025-04-23 21:11:54 +01:00
beStrictAboutTestsThatDoNotTestAnything="true"
bootstrap="web/core/tests/bootstrap.php"
colors="true"
printerClass="\Drupal\Tests\Listeners\HtmlOutputPrinter"
2025-04-23 21:11:54 +01:00
>
<php>
<ini name="error_reporting" value="32767"/>
<ini name="memory_limit" value="-1"/>
</php>
<testsuites>
<testsuite name="functional">
<directory suffix="Test.php">./web/modules/custom/**/tests/**/Functional</directory>
</testsuite>
<testsuite name="kernel">
<directory suffix="Test.php">./web/modules/custom/**/tests/**/Kernel</directory>
</testsuite>
<testsuite name="unit">
<directory suffix="Test.php">./web/modules/custom/**/tests/**/Unit</directory>
</testsuite>
</testsuites>
2025-04-23 21:11:54 +01:00
</phpunit>