-
Notifications
You must be signed in to change notification settings - Fork 3
/
phpunit.xml.dist
49 lines (49 loc) · 1.73 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
<?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"
verbose="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutChangesToGlobalState="true"
beStrictAboutTodoAnnotatedTests="true"
forceCoversAnnotation="true"
convertWarningsToExceptions="false"
convertErrorsToExceptions="false"
convertNoticesToExceptions="false"
convertDeprecationsToExceptions="false"
>
<testsuites>
<testsuite name="unit">
<directory>./tests/Unit</directory>
<exclude>./tests/Unit/Laravel</exclude>
<exclude>./tests/Unit/ScoutApmBundle</exclude>
</testsuite>
<testsuite name="integration">
<directory>./tests/Integration</directory>
</testsuite>
<testsuite name="laravel">
<directory>./tests/Unit/Laravel</directory>
</testsuite>
<testsuite name="symfony">
<directory>./tests/Unit/ScoutApmBundle</directory>
</testsuite>
</testsuites>
<php>
<ini name="error_reporting" value="E_ALL" />
<ini name="display_errors" value="On" />
</php>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory>./src/</directory>
<exclude>
<file>./src/ScoutApmBundle/Twig/TwigMethods-Twig2.php</file>
<file>./src/ScoutApmBundle/Twig/TwigMethods-Twig3.php</file>
</exclude>
</whitelist>
</filter>
<listeners>
<listener class="Scoutapm\IntegrationTests\CheckScoutApmKeyListener"></listener>
</listeners>
</phpunit>