aboutsummaryrefslogtreecommitdiffstats
path: root/tests/phpunit-pgsql.xml
diff options
context:
space:
mode:
authorKlaus Weidenbach <Klaus.Weidenbach@gmx.net>2016-10-22 22:43:25 +0200
committerKlaus Weidenbach <Klaus.Weidenbach@gmx.net>2017-03-14 20:31:13 +0100
commit33153b8f3a2e4974ae5b1e9f4017f669e35207fe (patch)
treee4d67029439358c6decb25d04a79e1c65245a99f /tests/phpunit-pgsql.xml
parentbdfdd23b36cac0881ef4096180e1c9242753dd49 (diff)
downloadvolse-hubzilla-33153b8f3a2e4974ae5b1e9f4017f669e35207fe.tar.gz
volse-hubzilla-33153b8f3a2e4974ae5b1e9f4017f669e35207fe.tar.bz2
volse-hubzilla-33153b8f3a2e4974ae5b1e9f4017f669e35207fe.zip
[FEATURE] :construction_worker: Extend Travis CI integration.
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.
Diffstat (limited to 'tests/phpunit-pgsql.xml')
-rw-r--r--tests/phpunit-pgsql.xml34
1 files changed, 34 insertions, 0 deletions
diff --git a/tests/phpunit-pgsql.xml b/tests/phpunit-pgsql.xml
new file mode 100644
index 000000000..f59dd05ad
--- /dev/null
+++ b/tests/phpunit-pgsql.xml
@@ -0,0 +1,34 @@
+<?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>
+ <groups>
+ <exclude>
+ <group>mysql</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>