diff options
| author | Greg <supahgreg@users.noreply.github.com> | 2025-10-11 11:43:04 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-11 11:43:04 -0500 |
| commit | 73e6ade27f9751d3892693be9e11946462e10ed5 (patch) | |
| tree | b2696cebda0a5b81b361e093d27bd80cefdb2b7a /phpunit.xml | |
| parent | df4630b316f468c772fb4edc7e1dc0a46765542f (diff) | |
| parent | 3bb71c4e6b0bcf803e96413fa30b63490eb43465 (diff) | |
Merge pull request #39 from tt-rss/composer-lock-and-phpunit
Composer cleanup, PHPUnit 9 --> 12
Diffstat (limited to 'phpunit.xml')
| -rw-r--r-- | phpunit.xml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/phpunit.xml b/phpunit.xml index 73efc552c..20a3e63ea 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -1,10 +1,14 @@ <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"> + cacheDirectory=".phpunit.cache" + executionOrder="depends,defects" + beStrictAboutOutputDuringTests="true" + failOnRisky="true" + failOnWarning="true"> <testsuite name="tt-rss"> <directory>tests</directory> -</testsuite> + </testsuite> </phpunit> |