-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathphpunit.xml
More file actions
35 lines (34 loc) · 1.21 KB
/
Copy pathphpunit.xml
File metadata and controls
35 lines (34 loc) · 1.21 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
<?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"/>
<ini name="date.timezone" value="UTC"/>
<env name="CACTI_TEST_BOOTSTRAP" value="1"/>
</php>
<testsuites>
<testsuite name="Plugin FlowView">
<directory>tests/Security</directory>
<directory>tests/Unit</directory>
</testsuite>
</testsuites>
<!--
Pest reads this PHPUnit-compatible configuration through Cacti's
Composer-managed vendor tree, checked out alongside this plugin by
the CI workflow (see .github/workflows/plugin-ci-workflow.yml).
-->
<source>
<include>
<file>setup.php</file>
<file>functions.php</file>
<file>database.php</file>
</include>
</source>
</phpunit>