Skip to content

Commit

Permalink
Update PHPUnit configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Aug 31, 2023
1 parent d3fc784 commit 12191c4
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,18 @@
failOnWarning="true"
colors="true">
<testsuites>
<testsuite name="default">
<directory>tests</directory>
<testsuite name="unit">
<directory>tests/unit</directory>
</testsuite>

<testsuite name="integration">
<directory>tests/integration</directory>
</testsuite>
</testsuites>

<source>
<source restrictDeprecations="true"
restrictNotices="true"
restrictWarnings="true">
<include>
<directory>src</directory>
</include>
Expand Down

0 comments on commit 12191c4

Please sign in to comment.