- Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
Latest commit
27 lines (24 loc) · 816 Bytes
/
Copy pathphpunit.xml.dist
File metadata and controls
27 lines (24 loc) · 816 Bytes
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
<?xml version="1.0"?>
<phpunitxmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"bootstrap="vendor/silverstripe/framework/tests/bootstrap.php"colors="true"xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.5/phpunit.xsd">
<testsuites>
<testsuitename="Default">
<directorysuffix="Test.php">tests/PHPUnit</directory>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>sanitychecks</group>
</exclude>
</groups>
<coverageincludeUncoveredFiles="true">
<include>
<directorysuffix=".php">src/</directory>
</include>
<exclude>
<directorysuffix=".php">tests/</directory>
</exclude>
</coverage>
<php>
<getname="flush"value="1"/>
</php>
</phpunit>