Skip to content

Commit

Permalink
chore: update PHPUnit configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
owenvoke committed Jun 21, 2023
1 parent 5adc85e commit 94f56a9
Showing 1 changed file with 6 additions and 15 deletions.
21 changes: 6 additions & 15 deletions phpunit.xml.dist
@@ -1,30 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
backupGlobals="false"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutOutputDuringTests="true"
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
failOnRisky="true"
failOnWarning="true"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
cacheDirectory=".phpunit.cache"
backupStaticProperties="false">
>
<testsuites>
<testsuite name="">
<testsuite name="Tests">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<coverage>
<source>
<include>
<directory suffix=".php">src</directory>
<directory suffix=".php">./src</directory>
</include>
<exclude>
<directory suffix=".php">./src/Components/Database/stubs</directory>
<directory suffix=".php">./src/Components/Log/stubs</directory>
</exclude>
</coverage>
</source>
</phpunit>

0 comments on commit 94f56a9

Please sign in to comment.