Skip to content

Commit

Permalink
ci(phpunit): migrate config (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
simPod authored Aug 29, 2024
1 parent 3a6c74f commit 7f79f64
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
beStrictAboutChangesToGlobalState="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutTodoAnnotatedTests="true"
executionOrder="random"
colors="true"
bootstrap="tests/bootstrap.php"
Expand All @@ -13,16 +12,18 @@
failOnNotice="true"
failOnWarning="true"
>
<testsuites>
<testsuite name="Test Suite">
<directory>tests</directory>
<exclude>tests/TestCheck/Fixtures/*</exclude>
</testsuite>
</testsuites>
<coverage />
<source>
<include>
<directory suffix=".php">src</directory>
</include>
</source>
<testsuites>
<testsuite name="Test Suite">
<directory>tests</directory>
<exclude>tests/TestCheck/Fixtures/*</exclude>
</testsuite>
</testsuites>

<coverage />

<source>
<include>
<directory>src</directory>
</include>
</source>
</phpunit>

0 comments on commit 7f79f64

Please sign in to comment.