mirror of
https://github.com/flarum/framework.git
synced 2024-12-01 22:43:41 +08:00
c4a501f82a
* part one of adding tests, updating core
* Apply fixes from StyleCI
[ci skip] [skip ci]
* we need xdebug for code coverage, and hhvm was already removed
* forgot about the sidecar for mysql completely 🤦
* gitignore removed this installed json we need to fake that we have extensions
* using reguarded closure
23 lines
695 B
XML
23 lines
695 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>
|
|
</phpunit>
|