-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit9.xml
More file actions
45 lines (42 loc) · 1.59 KB
/
Copy pathphpunit9.xml
File metadata and controls
45 lines (42 loc) · 1.59 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
bootstrap="tests/bootstrap.php"
cacheResult="true"
cacheResultFile=".phpunit/result.cache"
colors="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutTodoAnnotatedTests="true"
failOnRisky="false"
failOnWarning="false"
backupGlobals="false"
verbose="true">
<testsuites>
<testsuite name="Observium Test Suite">
<directory suffix="Test.php">tests</directory>
<!-- EXCLUDE specific files or folders. Not supported in PHPUnit 9.5 -->
<!-- <exclude>-->
<!-- <file>tests/SnmpData.php</file>-->
<!-- <file>tests/SnmpOsData.php</file>-->
<!-- <directory>tests/legacy/</directory>-->
<!-- </exclude>-->
</testsuite>
</testsuites>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">includes</directory>
<directory suffix=".php">html/includes</directory>
</include>
<exclude>
<directory>vendor</directory>
<directory>tests</directory>
</exclude>
</coverage>
<php>
<ini name="memory_limit" value="512M"/>
<ini name="opcache.enable" value="0"/>
<ini name="default_charset" value="UTF-8"/>
<ini name="precision" value="14"/>
<ini name="serialize_precision" value="17"/>
</php>
</phpunit>