-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml
More file actions
25 lines (25 loc) · 1.07 KB
/
phpunit.xml
File metadata and controls
25 lines (25 loc) · 1.07 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="pest.php" backupGlobals="false" colors="true" beStrictAboutTestsThatDoNotTestAnything="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/12.4/phpunit.xsd">
<testsuites>
<testsuite name="wp-field">
<directory suffix="Test.php">./tests/Unit</directory>
<directory suffix="Test.php">./tests/Feature</directory>
<exclude>./tests/Unit/Legacy</exclude>
<exclude>./tests/Feature/BootstrapFilesTest.php</exclude>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">./src</directory>
</include>
<exclude>
<directory>./vendor</directory>
<directory>./tests</directory>
<directory>./assets</directory>
<directory>./examples</directory>
<directory>./dist</directory>
<directory>./vanilla</directory>
</exclude>
</source>
<coverage includeUncoveredFiles="true" ignoreDeprecatedCodeUnits="true" pathCoverage="false" disableCodeCoverageIgnore="false"/>
</phpunit>