Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaEstes committed Sep 30, 2023
1 parent 562996e commit 88cfe2e
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 27 deletions.
45 changes: 19 additions & 26 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,37 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>

<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
convertDeprecationsToExceptions="true"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.3/phpunit.xsd"
backupGlobals="false"
colors="true"
bootstrap="vendor/autoload.php"
beStrictAboutCoversAnnotation="false"
forceCoversAnnotation="true"
>
cacheDirectory=".phpunit.cache"
requireCoverageMetadata="true"
beStrictAboutCoverageMetadata="false">

<testsuites>
<testsuite name="all">
<directory>packages/*/Tests</directory>
</testsuite>
</testsuites>
<testsuites>
<testsuite name="all">
<directory>packages/*/Tests</directory>
</testsuite>
</testsuites>

<coverage processUncoveredFiles="true" cacheDirectory=".phpunit-coverage-cache">
<include>
<directory>packages/*</directory>
</include>
<exclude>
<directory>packages/*/Tests</directory>
<directory>packages/*/vendor</directory>
</exclude>
</coverage>
<coverage/>

<listeners>
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener"/>
</listeners>
<source>
<include>
<directory>packages/*</directory>
</include>
<exclude>
<directory>packages/*/Tests</directory>
<directory>packages/*/vendor</directory>
</exclude>
</source>

</phpunit>
2 changes: 1 addition & 1 deletion tools/phpunit/composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"require": {
"phpunit/phpunit": "^9"
"phpunit/phpunit": "^10"
}
}

0 comments on commit 88cfe2e

Please sign in to comment.