Skip to content

Commit

Permalink
build: Re-generate phpunit config file
Browse files Browse the repository at this point in the history
Follows-Up: 1f1f300
Change-Id: I8e3517fa21b6feadc9a41547743eeca0cf059d64
  • Loading branch information
jdforrester committed Feb 12, 2023
1 parent 1f1f300 commit 661830d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@
/test/phpunit/_cache/
/.idea
/.phpunit.result.cache
/.phpunit.cache
/composer.lock
16 changes: 13 additions & 3 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,27 +1,37 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
processIsolation="false"
stopOnFailure="false"
stopOnError="false"
stopOnIncomplete="false"
stopOnSkipped="false"
bootstrap="test/phpunit/bootstrap.php"
cacheResultFile=".phpunit.cache/test-results"
executionOrder="depends,defects"
beStrictAboutOutputDuringTests="true"
beStrictAboutTodoAnnotatedTests="true"
convertDeprecationsToExceptions="true"
failOnRisky="true"
failOnWarning="true"
verbose="true"
>
<testsuites>
<testsuite name="Tests">
<directory>./test/phpunit</directory>
</testsuite>
</testsuites>
<coverage
cacheDirectory=".phpunit.cache/code-coverage"
includeUncoveredFiles="true"
processUncoveredFiles="true"
pathCoverage="false"
ignoreDeprecatedCodeUnits="true"
disableCodeCoverageIgnore="true">
<exclude>
<include>
<directory suffix=".php">lib/</directory>
<file>lessc.inc.php</file>
</exclude>
</include>
</coverage>
</phpunit>

0 comments on commit 661830d

Please sign in to comment.