aboutsummaryrefslogtreecommitdiffstats
path: root/tests/phpunit-pgsql.xml
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-03-16 10:02:17 +1100
committerGitHub <noreply@github.com>2017-03-16 10:02:17 +1100
commit16df1c1ad4251db369a9b90889c12c186a2f12fb (patch)
tree7e87e4c198cda6474d996a5cfd6d6b47ebfcc8dc /tests/phpunit-pgsql.xml
parent62c921815fcc832d550c5c453284e911da10692f (diff)
parent5c080ca4e84d9c516d229b8a1248ad5aecf2fe0f (diff)
downloadvolse-hubzilla-16df1c1ad4251db369a9b90889c12c186a2f12fb.tar.gz
volse-hubzilla-16df1c1ad4251db369a9b90889c12c186a2f12fb.tar.bz2
volse-hubzilla-16df1c1ad4251db369a9b90889c12c186a2f12fb.zip
Merge pull request #569 from dawnbreak/QA_testing
[FEATURE] Extend Travis CI integration.
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..ace14e196
--- /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/6.0/phpunit.xsd"
+ bootstrap="../boot.php"
+ forceCoversAnnotation="false"
+ beStrictAboutCoversAnnotation="true"
+ beStrictAboutOutputDuringTests="true"
+ beStrictAboutTodoAnnotatedTests="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-clover" target="./results/coverage-clover.xml"/>
+ <log type="coverage-html" target="./results/coverage-report/" lowUpperBound="35"
+ highLowerBound="70"/>
+ </logging>
+</phpunit>