1
0
mirror of synced 2025-01-18 17:01:41 +03:00
woocommerce-module/phpunit.xml.dist

32 lines
1012 B
Plaintext
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?>
<phpunit
2020-02-25 14:40:36 +03:00
bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
verbose="true"
processIsolation="false"
stopOnFailure="false"
>
<testsuites>
<testsuite name="Retailcrm WooCommerce Test Suite">
2020-02-25 13:45:17 +03:00
<directory suffix=".php">tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
2020-03-02 18:02:40 +03:00
<directory suffix=".php">src</directory>
<exclude>
<directory suffix=".php">src/include/api</directory>
2020-03-02 18:02:40 +03:00
<directory>src/config</directory>
<directory>src/languages</directory>
<file>src/readme.txt</file>
</exclude>
</whitelist>
</filter>
2020-03-02 18:02:40 +03:00
<logging>
<log type="coverage-clover" target="coverage.xml"/>
</logging>
</phpunit>