-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.ddev.xml
61 lines (55 loc) · 2.25 KB
/
phpunit.ddev.xml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
bootstrap="vendor/weitzman/drupal-test-traits/src/bootstrap.php" colors="true"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutChangesToGlobalState="true"
failOnWarning="true"
printerClass="\Drupal\Tests\Listeners\HtmlOutputPrinter"
cacheResult="false">
<php>
<ini name="error_reporting" value="32767"/>
<ini name="memory_limit" value="-1"/>
<env name="DTT_BASE_URL" value="http://localhost:80"/>
<env name="DTT_API_URL" value="http://localhost:80"/>
<env name="SIMPLETEST_BASE_URL" value="http://localhost"/>
<env name="SIMPLETEST_DB" value="mysql://db:db@db/db"/>
<env name="BROWSERTEST_OUTPUT_DIRECTORY" value=""/>
<env name="BROWSERTEST_OUTPUT_BASE_URL" value=""/>
<env name="MINK_DRIVER_CLASS" value=""/>
<env name="MINK_DRIVER_ARGS" value=""/>
<env name="MINK_DRIVER_ARGS_WEBDRIVER" value=""/>
<env name="SYMFONY_DEPRECATIONS_HELPER" value="weak" />
</php>
<testsuites>
<testsuite name="unit">
<directory>./modules/custom/*/tests/src/Unit</directory>
<directory>./modules/custom/*/*/tests/src/Unit</directory>
</testsuite>
<testsuite name="existing-site">
<directory>./modules/custom/*/tests/src/ExistingSite</directory>
<directory>./modules/custom/*/*/tests/src/ExistingSite</directory>
</testsuite>
<testsuite name="kernel">
<directory>./modules/custom/*/tests/src/Kernel</directory>
<directory>./modules/custom/*/*/tests/src/Kernel</directory>
</testsuite>
<testsuite name="functional">
<directory>./modules/custom/*/tests/src/Functional</directory>
<directory>./modules/custom/*/*/tests/src/Functional</directory>
</testsuite>
</testsuites>
<listeners>
<listener class="\Drupal\Tests\Listeners\DrupalListener">
</listener>
</listeners>
<coverage includeUncoveredFiles="false">
<include>
<directory>./web/modules/custom</directory>
</include>
<exclude>
<directory>./web/modules/custom/*/tests</directory>
<directory>./web/modules/custom/*/*/tests</directory>
</exclude>
</coverage>
</phpunit>