Skip to content

Commit

Permalink
Migrate config
Browse files Browse the repository at this point in the history
  • Loading branch information
ottlinger committed Jan 14, 2025
1 parent 1177d37 commit ad1fee3
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" backupGlobals="false" backupStaticAttributes="false" bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./tests/</directory>
<directory suffix=".php">./src/</directory>
</include>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.5/phpunit.xsd" backupGlobals="false" bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnFailure="false" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
<coverage>
<report>
<clover outputFile="coverage.xml"/>
<text outputFile="php://stdout" showUncoveredFiles="true"/>
Expand All @@ -19,4 +15,10 @@
<testdoxHtml outputFile="testdox.html"/>
<testdoxText outputFile="testdox.txt"/>
</logging>
<source>
<include>
<directory suffix=".php">./tests/</directory>
<directory suffix=".php">./src/</directory>
</include>
</source>
</phpunit>

0 comments on commit ad1fee3

Please sign in to comment.