-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathphpunit.xml
31 lines (31 loc) · 1.1 KB
/
phpunit.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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/7.3/phpunit.xsd"
bootstrap="phpunit-bootstrap.php"
beStrictAboutCoversAnnotation="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutTodoAnnotatedTests="true"
verbose="true"
colors="true">
<testsuite name="all">
<directory>packages/*/tests</directory>
<exclude>packages/phpcs-psr4-sniff/tests/demo</exclude>
</testsuite>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">packages/*/src</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-html"
target="reports-coverage"/>
<log type="coverage-clover"
target="reports-coverage/clover.xml"/>
<log type="coverage-text"
target="php://stdout"
showOnlySummary="true"/>
</logging>
<php>
<const name="PHPUNIT_RUNNING" value="true"/>
</php>
</phpunit>