diff options
| author | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-11 15:39:15 +0000 |
|---|---|---|
| committer | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-11 15:39:15 +0000 |
| commit | cd42738331d3b4cb5791b761038c7456c02c0c77 (patch) | |
| tree | 8fa71c451dc6672d6cc86893feab3877d84de5b7 /phpunit.xml | |
| parent | 170cdba1f491e8a9956615f715a7ff5b0182b713 (diff) | |
Update PHPUnit config+test for 12.x.
Diffstat (limited to 'phpunit.xml')
| -rw-r--r-- | phpunit.xml | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/phpunit.xml b/phpunit.xml index 73efc552c..b7a0247cf 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -1,10 +1,16 @@ <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/latest/phpunit.xsd" + xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/12.0/phpunit.xsd" bootstrap="tests/autoload.php" - verbose="true"> + verbose="true" + cacheDirectory=".phpunit.cache" + executionOrder="depends,defects" + beStrictAboutOutputDuringTests="true" + beStrictAboutTodoAnnotatedTests="true" + failOnRisky="true" + failOnWarning="true"> <testsuite name="tt-rss"> <directory>tests</directory> -</testsuite> + </testsuite> </phpunit> |