mirror of
https://github.com/ovh/php-ovh.git
synced 2023-11-05 03:20:26 +01:00
7d606bdcc1
Signed-off-by: Germain Carré git@germain.sh
31 lines
804 B
XML
31 lines
804 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit
|
|
bootstrap="./vendor/autoload.php"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertDeprecationsToExceptions="true"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="all">
|
|
<directory>./tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<coverage>
|
|
<include>
|
|
<directory suffix=".php">src/</directory>
|
|
</include>
|
|
|
|
<report>
|
|
<clover outputFile="build/logs/clover.xml" />
|
|
<html outputDirectory="build/coverage" />
|
|
<text outputFile="php://stdout" />
|
|
</report>
|
|
</coverage>
|
|
|
|
<logging>
|
|
<junit outputFile="build/report.junit.xml"/>
|
|
</logging>
|
|
</phpunit> |