Testing several Travis CI features. Add DBs to travis execution matrix. Doxygen API docu generation and deployment to gh-pages. Update phpunit to 5.7.
38 lines
1.4 KiB
XML
38 lines
1.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/5.7/phpunit.xsd"
|
|
backupGlobals="false"
|
|
beStrictAboutCoversAnnotation="true"
|
|
beStrictAboutOutputDuringTests="true"
|
|
beStrictAboutTestsThatDoNotTestAnything="true"
|
|
beStrictAboutTodoAnnotatedTests="true"
|
|
processIsolation="true"
|
|
verbose="true">
|
|
<testsuite name="Hubzilla default Test Suite">
|
|
<directory suffix="Test.php">./unit/</directory>
|
|
</testsuite>
|
|
<testsuite name="API Test Suite">
|
|
<directory suffix="Test.php" prefix="API">./unit/</directory>
|
|
</testsuite>
|
|
<testsuite name="Ex-/Import Test Suite">
|
|
<directory suffix="Test.php">./unit/eximport/</directory>
|
|
</testsuite>
|
|
<groups>
|
|
<exclude>
|
|
<group>postgresql</group>
|
|
</exclude>
|
|
</groups>
|
|
<!--cover reporting-->
|
|
<filter>
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">../Zotlabs/</directory>
|
|
<directory suffix=".php">../include/</directory>
|
|
</whitelist>
|
|
</filter>
|
|
<logging>
|
|
<log type="junit" target="./results/junit.xml" logIncompleteSkipped="false"/>
|
|
<log type="coverage-html" target="./results/report/" lowUpperBound="35"
|
|
highLowerBound="70"/>
|
|
</logging>
|
|
</phpunit>
|