diff options
author | Klaus Weidenbach <Klaus.Weidenbach@gmx.net> | 2016-10-22 22:43:25 +0200 |
---|---|---|
committer | Klaus Weidenbach <Klaus.Weidenbach@gmx.net> | 2017-03-14 20:31:13 +0100 |
commit | 33153b8f3a2e4974ae5b1e9f4017f669e35207fe (patch) | |
tree | e4d67029439358c6decb25d04a79e1c65245a99f /tests/phpunit-mysql.xml | |
parent | bdfdd23b36cac0881ef4096180e1c9242753dd49 (diff) | |
download | volse-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-mysql.xml')
-rw-r--r-- | tests/phpunit-mysql.xml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/phpunit-mysql.xml b/tests/phpunit-mysql.xml new file mode 100644 index 000000000..b421d7a7b --- /dev/null +++ b/tests/phpunit-mysql.xml @@ -0,0 +1,37 @@ +<?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> |