The trusty distro contains MySQL 5.6. Add a precise distro with MySQL 5.5. Unfortunately 5.7 is not yet provided, which would be interesting because of the enabled strict SQL mode.
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="false"
|
|
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>
|