generated from lightspeedwp/block-theme-scaffold
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
29 lines (29 loc) · 814 Bytes
/
phpunit.xml
File metadata and controls
29 lines (29 loc) · 814 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
28
29
<?xml version="1.0"?>
<phpunit
bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<testsuites>
<testsuite name="Medical Academic Test Suite">
<directory prefix="Test_" suffix=".php">./tests/php/</directory>
</testsuite>
</testsuites>
<coverage includeUncoveredFiles="true">
<include>
<directory suffix=".php">./inc/</directory>
<file>./functions.php</file>
</include>
<exclude>
<directory>./tests/</directory>
<directory>./vendor/</directory>
<directory>./node_modules/</directory>
</exclude>
</coverage>
<php>
<const name="WP_TESTS_PHPUNIT_POLYFILLS_PATH" value="./vendor/yoast/phpunit-polyfills/phpunitpolyfills-autoload.php" />
</php>
</phpunit>