-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathphpunit.xml
More file actions
30 lines (30 loc) · 1.2 KB
/
phpunit.xml
File metadata and controls
30 lines (30 loc) · 1.2 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
<?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="tests/bootstrap.php"
colors="true"
cacheDirectory=".phpunit.cache"
executionOrder="depends,defects"
displayDetailsOnTestsThatTriggerWarnings="true"
displayDetailsOnTestsThatTriggerDeprecations="true"
displayDetailsOnTestsThatTriggerNotices="true"
displayDetailsOnTestsThatTriggerErrors="true"
failOnWarning="true"
failOnNotice="true">
<testsuites>
<testsuite name="Inventory">
<file>tests/InfraSmokeTest.php</file>
<file>tests/CSRFTest.php</file>
<file>tests/HealthTest.php</file>
<file>tests/BackupTest.php</file>
<file>tests/LogRotateTest.php</file>
<file>tests/SessionTest.php</file>
<file>tests/PasswordResetTest.php</file>
<file>tests/AuditTest.php</file>
<file>tests/PermissionsTest.php</file>
</testsuite>
</testsuites>
<php>
<env name="INVENTORY_TEST_RUNNER" value="phpunit"/>
</php>
</phpunit>