diff options
author | zotlabs <mike@macgirvin.com> | 2017-03-15 16:02:45 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-03-15 16:02:45 -0700 |
commit | 472a824a1eaef00759ebbdc506384e8d521e408e (patch) | |
tree | 1ec27204ee2df0bf2d049291b1c0a7b06e0a1dee /tests/phpunit-pgsql.xml | |
parent | 2dce86d38e58c0fc88c252d0a7f0b1b83a960451 (diff) | |
parent | 16df1c1ad4251db369a9b90889c12c186a2f12fb (diff) | |
download | volse-hubzilla-472a824a1eaef00759ebbdc506384e8d521e408e.tar.gz volse-hubzilla-472a824a1eaef00759ebbdc506384e8d521e408e.tar.bz2 volse-hubzilla-472a824a1eaef00759ebbdc506384e8d521e408e.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev_merge
Diffstat (limited to 'tests/phpunit-pgsql.xml')
-rw-r--r-- | tests/phpunit-pgsql.xml | 34 |
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> |