Skip to content

Commit

Permalink
Migrate to phpunit 10
Browse files Browse the repository at this point in the history
Signed-off-by: Aleksei Khudiakov <[email protected]>
  • Loading branch information
Xerkus committed Dec 1, 2023
1 parent 362dd29 commit 4ba4d71
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/.phpcs-cache
/.phpunit.result.cache
/.phpunit.cache
/.psalm-cache
/docs/html/
/laminas-mkdoc-theme.tgz
Expand Down
15 changes: 11 additions & 4 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,20 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="test/bootstrap.php"
convertDeprecationsToExceptions="true"
colors="true">
<coverage processUncoveredFiles="true">
cacheDirectory=".phpunit.cache"
displayDetailsOnIncompleteTests="true"
displayDetailsOnSkippedTests="true"
displayDetailsOnTestsThatTriggerDeprecations="true"
displayDetailsOnTestsThatTriggerErrors="true"
displayDetailsOnTestsThatTriggerNotices="true"
displayDetailsOnTestsThatTriggerWarnings="true"
colors="true"
>
<source>
<include>
<directory suffix=".php">./src</directory>
</include>
</coverage>
</source>

<testsuites>
<testsuite name="laminas-mvc-plugin-fileprg Test Suite">
Expand Down

0 comments on commit 4ba4d71

Please sign in to comment.