diff options
author | Mario <mario@mariovavti.com> | 2020-11-26 11:14:40 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-11-26 11:14:40 +0000 |
commit | 5e1addc75e73e84254e820fc67dba057a8728db6 (patch) | |
tree | 23f2c27072f9642622de85b0838e72a8e14949cb /tests/phpunit-pgsql.xml | |
parent | 138beeac41824394ad9a40e857ae9823e64e066c (diff) | |
download | volse-hubzilla-5e1addc75e73e84254e820fc67dba057a8728db6.tar.gz volse-hubzilla-5e1addc75e73e84254e820fc67dba057a8728db6.tar.bz2 volse-hubzilla-5e1addc75e73e84254e820fc67dba057a8728db6.zip |
revert folder renaming
Diffstat (limited to 'tests/phpunit-pgsql.xml')
-rw-r--r-- | tests/phpunit-pgsql.xml | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/tests/phpunit-pgsql.xml b/tests/phpunit-pgsql.xml new file mode 100644 index 000000000..148ac2e70 --- /dev/null +++ b/tests/phpunit-pgsql.xml @@ -0,0 +1,43 @@ +<?xml version="1.0" encoding="UTF-8"?> +<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" bootstrap="../boot.php" forceCoversAnnotation="false" beStrictAboutCoversAnnotation="true" beStrictAboutOutputDuringTests="true" beStrictAboutTodoAnnotatedTests="true" verbose="true"> + <coverage processUncoveredFiles="true"> + <include> + <directory suffix=".php">../Zotlabs/</directory> + <directory suffix=".php">../include/</directory> + </include> + <report> + <html outputDirectory="./results/coverage-report/" lowUpperBound="35" highLowerBound="70"/> + </report> + </coverage> + <testsuites> + <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> + </testsuites> + <groups> + <exclude> + <group>mysql</group> + </exclude> + </groups> + <!--coverage reporting--> + <logging> + <junit outputFile="./results/junit.xml"/> + <!--<log type="coverage-clover" target="./results/coverage-clover.xml"/>--> + <!--<log type="testdox-text" target="./results/testdox.txt"/>--> + <testdoxHtml outputFile="./results/testdox.html"/> + </logging> + <php> + <!-- Default test database config, only used if no environment variables + with same names are set. + !!! Never run against a real database, it will truncate all tables --> + <env name="hz_db_server" value="postgres"/> + <env name="hz_db_scheme" value="pgsql"/> + <env name="hz_db_port" value="5432"/> + <env name="hz_db_user" value="ci-user"/> + <env name="hz_db_pass" value="ci-pass"/> + <env name="hz_db_database" value="ci-db"/> + </php> +</phpunit> |