-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathphpunit_component_tests.xml
80 lines (62 loc) · 2.35 KB
/
phpunit_component_tests.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
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
backupGlobals="true"
backupStaticProperties="false"
beStrictAboutChangesToGlobalState="false"
beStrictAboutCoverageMetadata="false"
beStrictAboutOutputDuringTests="true"
beStrictAboutTestsThatDoNotTestAnything="true"
bootstrap="./tests/ElasticOTelTests/ComponentTests/bootstrapComponentTests.php"
cacheDirectory="./z_local/GENERATED/PHPUnit/cache"
cacheResult="false"
colors="false"
enforceTimeLimit="false"
executionOrder="default"
displayDetailsOnIncompleteTests="true"
displayDetailsOnPhpunitDeprecations="true"
displayDetailsOnTestsThatTriggerDeprecations="true"
displayDetailsOnTestsThatTriggerErrors="true"
displayDetailsOnTestsThatTriggerNotices="true"
displayDetailsOnTestsThatTriggerWarnings="true"
displayDetailsOnSkippedTests="true"
failOnDeprecation="false"
failOnEmptyTestSuite="true"
failOnIncomplete="true"
failOnNotice="false"
failOnPhpunitDeprecation="false"
failOnRisky="true"
failOnSkipped="true"
failOnWarning="false"
processIsolation="false"
requireCoverageMetadata="false"
stderr="true"
stopOnDefect="true"
stopOnError="true"
stopOnFailure="true"
stopOnIncomplete="true"
stopOnNotice="false"
stopOnSkipped="true"
stopOnRisky="true"
stopOnWarning="false"
>
<testsuites>
<testsuite name="Tests">
<directory>./tests/ElasticOTelTests/ComponentTests</directory>
</testsuite>
</testsuites>
<extensions>
<bootstrap class="ElasticOTelTests\ComponentTests\Util\ComponentTestsPHPUnitExtension"/>
</extensions>
<logging>
<junit outputFile="./z_local/GENERATED/PHPUnit/component_tests_log_junit_format.xml"/>
</logging>
<source restrictDeprecations="true" restrictNotices="true" restrictWarnings="true">
<include>
<directory>./prod/php</directory>
</include>
</source>
<php>
<ini name="memory_limit" value="2G"/>
</php>
</phpunit>