Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
Latest commit
32 lines (32 loc) · 1.21 KB
/
Copy pathphpunit.xml.dist
File metadata and controls
32 lines (32 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunitxmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"backupGlobals="false"
bootstrap="vendor/autoload.php"colors="true"stopOnError="false"
stopOnFailure="false"stopOnIncomplete="false"stopOnSkipped="false"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
cacheDirectory=".phpunit.cache">
<coverage>
<report>
<cloveroutputFile="build/coverage/clover.xml"/>
<htmloutputDirectory="build/coverage"/>
<textoutputFile="php://stdout"/>
</report>
</coverage>
<testsuitename="Tests">
<directorysuffix="Test.php">tests</directory>
</testsuite>
<logging/>
<php>
<envname="DB_IMAGE"value="mariadb"/>
<envname="DB_HOST"value="mariadb"/>
<envname="DB_PORT"value="3306"/>
<envname="DB_USERNAME"value="root"/>
<envname="DB_PASSWORD"value="password"/>
<envname="DB_SCHEMA"value="framework-tests"/>
<envname="XDEBUG_MODE"value="coverage"/>
</php>
<source>
<include>
<directorysuffix=".php">src</directory>
</include>
</source>
</phpunit>