-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #86: Align phpunit.xml.dist files in packages.
- Loading branch information
1 parent
3c47e1b
commit 1a19f0b
Showing
1 changed file
with
25 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |