Skip to content

Commit

Permalink
Updaded phpunit conf to both versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgsowa committed May 14, 2024
1 parent 912b876 commit af73748
Showing 1 changed file with 23 additions and 11 deletions.
34 changes: 23 additions & 11 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,13 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" backupGlobals="false" colors="true" beStrictAboutTestsThatDoNotTestAnything="false" bootstrap="./test/bootstrap.php" cacheDirectory=".phpunit.cache">
<testsuites>
<testsuite name="PHPParser Test Suite">
<directory>./test/</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">./lib/PhpParser/</directory>
</include>
</source>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
backupGlobals="false"
colors="true"
convertDeprecationsToExceptions="true"
beStrictAboutTestsThatDoNotTestAnything="false"
bootstrap="./test/bootstrap.php"
cacheDirectory=".phpunit.cache">
<testsuites>
<testsuite name="PHPParser Test Suite">
<directory>./test/</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">./lib/PhpParser/</directory>
</include>
</source>
<coverage>
<include>
<directory suffix=".php">./lib/PhpParser/</directory>
</include>
</coverage>
</phpunit>

0 comments on commit af73748

Please sign in to comment.