mirror of
https://github.com/flarum/framework.git
synced 2024-11-25 17:57:04 +08:00
b3cbc5d1bd
fixes #1211 As we've already upgraded our minimum requirement to 7.1 there's no current need to force a constraint on dbal 2.7+.
28 lines
861 B
XML
28 lines
861 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnFailure="false"
|
|
syntaxCheck="false">
|
|
|
|
<testsuites>
|
|
<testsuite name="installation">
|
|
<directory suffix="Test.php">./tests/Install</directory>
|
|
</testsuite>
|
|
<testsuite name="all">
|
|
<directory suffix="Test.php">./tests</directory>
|
|
<exclude>./tests/Install</exclude>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">./src/</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|