Files
shahondin1624 9ed69b78ca
Database Portability Tests / Unit Tests (PlatformHelper) (push) Failing after 45s
Database Portability Tests / Integration (mysql) (push) Has been skipped
Database Portability Tests / Integration (postgres) (push) Has been skipped
Database Portability Tests / Integration (sqlite) (push) Has been skipped
Database Portability Tests / Verify no MySQL-specific SQL (push) Successful in 4s
feat: database portability — support PostgreSQL and SQLite (Closes #192)
2026-04-12 13:46:22 +02:00

27 lines
901 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
bootstrap="tests/bootstrap.php"
colors="true"
cacheDirectory=".phpunit.cache">
<testsuites>
<testsuite name="Unit">
<directory>tests/Unit</directory>
</testsuite>
<testsuite name="Integration">
<directory>tests/Integration</directory>
</testsuite>
<testsuite name="DatabasePortability">
<directory>tests/DatabasePortability</directory>
</testsuite>
</testsuites>
<coverage>
<include>
<directory suffix=".php">lib/</directory>
</include>
<exclude>
<directory suffix=".php">lib/Migration</directory>
</exclude>
</coverage>
</phpunit>