forked from jukylin/jaeger-php
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathphpunit.xml
More file actions
28 lines (28 loc) · 1.08 KB
/
phpunit.xml
File metadata and controls
28 lines (28 loc) · 1.08 KB
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
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.5/phpunit.xsd"
backupGlobals="true"
bootstrap="./vendor/autoload.php"
cacheResult="false"
colors="true">
<testsuites>
<testsuite name="jaeger-php">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./src</directory>
<exclude>
<file>./src/Jaeger/Reporter/Reporter.php</file>
<file>./src/Jaeger/Sampler/Sampler.php</file>
<file>./src/Jaeger/Transport/Transport.php</file>
<file>./src/Jaeger/Thrift</file>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="true" showOnlySummary="true"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
</phpunit>