0
0
mirror of https://github.com/PHPMailer/PHPMailer.git synced 2024-09-20 18:03:04 +02:00
PHPMailer/travis.phpunit.xml.dist

40 lines
1.2 KiB
Plaintext
Raw Normal View History

2013-12-16 14:28:57 +01:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
bootstrap="vendor/autoload.php"
verbose="true"
2013-12-16 14:28:57 +01:00
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
colors="true"
2013-12-16 14:28:57 +01:00
forceCoversAnnotation="false"
processIsolation="false">
<testsuites>
<testsuite name="PHPMailer Tests">
<directory>./test/</directory>
</testsuite>
</testsuites>
<listeners>
<listener class="PHPMailer\Test\DebugLogTestListener" />
</listeners>
2013-12-16 14:28:57 +01:00
<groups>
<exclude>
<group>languages</group>
<group>pop3</group>
2013-12-16 14:28:57 +01:00
</exclude>
</groups>
<filter>
<whitelist>
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
2013-12-16 14:28:57 +01:00
<logging>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="true"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
<log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false"/>
</logging>
</phpunit>