forked from goalgorilla/open_social
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
56 lines (55 loc) · 2.56 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?xml version="1.0" encoding="UTF-8"?>
<!-- TODO set checkForUnintentionallyCoveredCode="true" once https://www.drupal.org/node/2626832 is resolved. -->
<phpunit bootstrap="../../../core/tests/bootstrap.php" colors="true"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutChangesToGlobalState="true"
checkForUnintentionallyCoveredCode="false">
<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="unit-core">
<directory>../../../core/tests/Drupal/Tests</directory>
<directory>../../../core/modules/*/tests/src/Unit</directory>
<directory>../../../modules/*/tests/src/Unit</directory>
<!-- Exclude core test suites, we've got our own for now. -->
<exclude>../../../core/tests/Drupal/Tests/TestSuites</exclude>
<!-- Exclude Composer's vendor directory so we don't run tests there. -->
<exclude>../../../core/vendor</exclude>
<!-- Exclude Drush tests. -->
<exclude>../../../core/drush/tests</exclude>
<exclude>
<file>modules/contrib/address/tests/src/Unit/Plugin/Validation/Constraint/CountryConstraintValidatorTest.php</file>
</exclude>
</testsuite>
<testsuite name="social">
<directory>modules/*/*/tests/src/Unit</directory>
<exclude>
<file>modules/contrib/address/tests/src/Unit/Plugin/Validation/Constraint/CountryConstraintValidatorTest.php</file>
</exclude>
</testsuite>
<testsuite name="core-contrib">
<directory>../../../core/tests/Drupal/Tests</directory>
<directory>../../../core/modules/*/tests/src/Unit</directory>
<directory>../../../modules/*/tests/src/Unit</directory>
<directory>modules/*/*/tests/src/Unit</directory>
<!-- Exclude core test suites, we've got our own for now. -->
<exclude>../../../core/tests/Drupal/Tests/TestSuites</exclude>
<!-- Exclude Composer's vendor directory so we don't run tests there. -->
<exclude>../../../core/vendor</exclude>
<!-- Exclude Drush tests. -->
<exclude>../../../core/drush/tests</exclude>
<exclude>
<file>modules/contrib/address/tests/src/Unit/Plugin/Validation/Constraint/CountryConstraintValidatorTest.php</file>
</exclude>
</testsuite>
</testsuites>
<listeners>
<listener class="\Drupal\Tests\Listeners\DrupalStandardsListener">
</listener>
</listeners>
</phpunit>