Skip to content

Commit

Permalink
fix: phpunit dist file
Browse files Browse the repository at this point in the history
  • Loading branch information
vrkansagara committed Dec 11, 2024
1 parent f278e6d commit 98ed2ea
Showing 1 changed file with 16 additions and 7 deletions.
23 changes: 16 additions & 7 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage includeUncoveredFiles="true">
<include>
<directory suffix=".php">./src/*</directory>
</include>
</coverage>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
colors="true"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.5/phpunit.xsd"
displayDetailsOnTestsThatTriggerDeprecations="true"
displayDetailsOnTestsThatTriggerErrors="true"
displayDetailsOnTestsThatTriggerNotices="true"
displayDetailsOnTestsThatTriggerWarnings="true"
displayDetailsOnPhpunitDeprecations="true"
>
<testsuites>
<testsuite name="LaraOutPress Test Suite">
<directory>./tests</directory>
</testsuite>
</testsuites>
</phpunit>
<source>
<include>
<directory suffix=".php">./src/*</directory>
</include>
</source>
</phpunit>

0 comments on commit 98ed2ea

Please sign in to comment.