Skip to content

Commit

Permalink
Update phpunit.xml schema
Browse files Browse the repository at this point in the history
  • Loading branch information
dafeder committed Aug 20, 2021
1 parent 9d31c4d commit 12abe3b
Showing 1 changed file with 12 additions and 17 deletions.
29 changes: 12 additions & 17 deletions phpunit.xml
@@ -1,18 +1,13 @@
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/6.3/phpunit.xsd"
verbose="false">

<testsuites>
<testsuite name="all">
<directory suffix="Test.php" phpVersion="7.2" phpVersionOperator=">=">test</directory>
</testsuite>
</testsuites>

<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</whitelist>
</filter>

<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" verbose="false">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
</include>
</coverage>
<testsuites>
<testsuite name="all">
<directory suffix="Test.php" phpVersion="7.2" phpVersionOperator="&gt;=">test</directory>
</testsuite>
</testsuites>
</phpunit>

0 comments on commit 12abe3b

Please sign in to comment.