Skip to content

Commit

Permalink
Issue #86: Align phpunit.xml.dist files in packages.
Browse files Browse the repository at this point in the history
  • Loading branch information
donquixote committed Nov 2, 2024
1 parent 3c47e1b commit 1a19f0b
Showing 1 changed file with 25 additions and 21 deletions.
46 changes: 25 additions & 21 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,31 +1,35 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" colors="true" processIsolation="false" stopOnFailure="false" bootstrap="vendor/autoload.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.2/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
<coverage>
<report>
<clover outputFile="build/coverage/clover.xml"/>
<php outputFile="build/coverage/coverage.php"/>
</report>
</coverage>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
colors="true"
bootstrap="vendor/autoload.php"
displayDetailsOnIncompleteTests="true"
displayDetailsOnSkippedTests="true"
displayDetailsOnPhpunitDeprecations="true"
displayDetailsOnTestsThatTriggerDeprecations="true"
displayDetailsOnTestsThatTriggerErrors="true"
displayDetailsOnTestsThatTriggerNotices="true"
displayDetailsOnTestsThatTriggerWarnings="true"
failOnEmptyTestSuite="true"
failOnIncomplete="true"
failOnNotice="true"
failOnSkipped="true"
failOnPhpunitDeprecation="true"
failOnDeprecation="true"
failOnRisky="true"
failOnWarning="true"
>
<php>
<ini name="error_reporting" value="32767"/>
</php>
<testsuites>
<testsuite name="Adaptism test suite">
<testsuite name="default">
<directory>./tests/src</directory>
</testsuite>
</testsuites>
<php>
<ini name="error_reporting" value="-1"/>
<ini name="memory_limit" value="-1"/>
</php>
<!-- <logging>
<coverage-clover target="build/logs/clover.xml"/>
<junit target="build/logs/junit.xml"/>
<coverage-php target="build/cov/coverage.cov"/>
</logging> -->
<logging>
<junit outputFile="build/logs/junit.xml"/>
</logging>
<source>
<include>
<directory>src</directory>
<directory>./src/</directory>
</include>
</source>
</phpunit>

0 comments on commit 1a19f0b

Please sign in to comment.