forked from jonahgeorge/jaeger-client-php
-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml.dist
47 lines (43 loc) · 1.63 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
>
<filter>
<whitelist>
<directory suffix=".php">src/Jaeger</directory>
<exclude>
<directory suffix="Interface.php">src/</directory>
<file>src/Jaeger/Constants.php</file>
<file>src/Jaeger/Thrift/Agent/AgentIf.php</file>
<file>src/Jaeger/Thrift/Agent/AggregationValidatorIf.php</file>
<file>src/Jaeger/Thrift/Agent/BaggageRestrictionManagerIf.php</file>
<file>src/Jaeger/Thrift/Agent/DependencyIf.php</file>
<file>src/Jaeger/Thrift/Agent/SamplingManagerIf.php</file>
<file>src/Jaeger/Thrift/CollectorIf.php</file>
<file>src/Jaeger/Thrift/Crossdock/TracedServiceIf.php</file>
</exclude>
</whitelist>
</filter>
<testsuites>
<testsuite name="Jaeger Test Suite">
<directory suffix=".php">tests/Jaeger</directory>
</testsuite>
</testsuites>
<php>
<ini name="date.timezone" value="UTC"/>
<ini name="display_errors" value="on"/>
<ini name="display_startup_errors" value="on"/>
</php>
<logging>
<log
type="coverage-text"
target="php://stdout"
lowUpperBound="60"
highLowerBound="90"/>
<log
type="coverage-clover"
target="build/coverage.xml"/>
</logging>
</phpunit>