mirror of
https://github.com/flarum/framework.git
synced 2025-01-20 02:52:44 +08:00
820894a7c9
* test: php 8.4 * fix: php 8.4 deprecations * fix: make argument required * chore: review changes
25 lines
783 B
XML
25 lines
783 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="../../../vendor/phpunit/phpunit/phpunit.xsd"
|
|
backupGlobals="false"
|
|
cacheDirectory=".phpunit.cache"
|
|
backupStaticProperties="false"
|
|
colors="true"
|
|
processIsolation="true"
|
|
stopOnFailure="false"
|
|
bootstrap="../../../php-packages/testing/bootstrap/monorepo.php"
|
|
>
|
|
<source>
|
|
<include>
|
|
<directory suffix=".php">../src/</directory>
|
|
</include>
|
|
</source>
|
|
<testsuites>
|
|
<testsuite name="Flarum Integration Tests">
|
|
<directory suffix="Test.php">./integration</directory>
|
|
<exclude>./integration/tmp</exclude>
|
|
</testsuite>
|
|
</testsuites>
|
|
</phpunit>
|