Skip to content

Commit

Permalink
[TASK] Cleanup configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
fseipel committed Apr 18, 2024
1 parent 8657ecc commit 9db4f06
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 16 deletions.
13 changes: 5 additions & 8 deletions phpunit-functional.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,15 @@
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
cacheDirectory=".phpunit.cache"
backupStaticProperties="false"
requireCoverageMetadata="false"
>
<coverage>
<include>
<directory suffix=".php">Classes/</directory>
</include>
</coverage>
<testsuites>
<testsuite name="Functional tests">
<directory>Tests/Functional/</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">Classes/</directory>
</include>
</source>
</phpunit>
14 changes: 6 additions & 8 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,12 @@
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
cacheDirectory=".phpunit.cache"
backupStaticProperties="false"
requireCoverageMetadata="false"
>
<coverage>
<include>
<directory suffix=".php">Classes/</directory>
</include>
</coverage>
<testsuites>
<testsuite name="Unit tests">
<directory>Tests/Unit/</directory>
Expand All @@ -23,9 +25,5 @@
<ini name="display_errors" value="1"/>
<env name="TYPO3_CONTEXT" value="Testing"/>
</php>
<source>
<include>
<directory suffix=".php">Classes/</directory>
</include>
</source>

</phpunit>

0 comments on commit 9db4f06

Please sign in to comment.