-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathphpunit.xml.dist
32 lines (28 loc) · 946 Bytes
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true" bootstrap="vendor/autoload.php" defaultTestSuite="Core">
<testsuites>
<testsuite name="Core">
<directory>src/Core/Tests</directory>
<directory>src/Html/Tests</directory>
<directory>src/Twig/Tests</directory>
</testsuite>
<testsuite name="Drupal">
<directory>./src/Drupal/Tests</directory>
</testsuite>
</testsuites>
<php>
<env name="DRUPAL_ROOT" value="vendor/drupal" />
<env name="SYMFONY_DEPRECATIONS_HELPER" value="weak_vendors" />
</php>
<filter>
<whitelist>
<directory>./src/*/</directory>
<exclude>
<directory>./src/*/Tests</directory>
</exclude>
</whitelist>
</filter>
<listeners>
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
</listeners>
</phpunit>