Skip to content

Commit

Permalink
test: migrate phpunit’s configuration
Browse files Browse the repository at this point in the history
Signed-off-by: Thibaud CANALE <[email protected]>
  • Loading branch information
thican committed Jan 6, 2025
1 parent da1377e commit 1e3d2ae
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
colors="true">
<coverage includeUncoveredFiles="true">
<include>
<directory suffix=".php">application</directory>
</include>
</coverage>
<testsuites>
<testsuite name="unit-tests">
<directory>tests</directory>
Expand All @@ -18,10 +23,4 @@
<directory>tests/languages/fr</directory>
</testsuite>
</testsuites>

<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">application</directory>
</whitelist>
</filter>
</phpunit>

0 comments on commit 1e3d2ae

Please sign in to comment.