-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathphpunit.xml
More file actions
36 lines (35 loc) · 1.08 KB
/
Copy pathphpunit.xml
File metadata and controls
36 lines (35 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
29
30
31
32
33
34
35
36
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="../../include/vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="tests/bootstrap-unit.php"
cacheDirectory=".phpunit.cache"
colors="true"
failOnWarning="true"
failOnNotice="true"
failOnDeprecation="true"
beStrictAboutOutputDuringTests="false">
<php>
<ini name="error_reporting" value="-1"/>
<env name="CACTI_TEST_BOOTSTRAP" value="1"/>
</php>
<testsuites>
<testsuite name="intropage">
<directory>tests/Security</directory>
<directory>tests/Unit</directory>
</testsuite>
</testsuites>
<!--
Pest reads this PHPUnit-compatible configuration through Cacti's own
Composer-managed vendor tree, checked out alongside this plugin by
the CI workflow (see .github/workflows/plugin-ci-workflow.yml).
-->
<source>
<include>
<directory suffix=".php">include</directory>
<directory suffix=".php">panellib</directory>
<file>display.php</file>
<file>setup.php</file>
<file>poller_intropage.php</file>
</include>
</source>
</phpunit>