Skip to content

Commit

Permalink
Fix deprecated phpunit.xml.dist Schema
Browse files Browse the repository at this point in the history
  • Loading branch information
CRC-Mismatch committed Jun 1, 2022
1 parent 6ec6308 commit 9291a12
Showing 1 changed file with 16 additions and 28 deletions.
44 changes: 16 additions & 28 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,30 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>

<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
bootstrap="vendor/autoload.php"
>
<testsuites>
<testsuite name="Ekino New Relic Test Suite">
<directory>./Tests</directory>
</testsuite>
</testsuites>

<filter>
<whitelist>
<directory>./</directory>
<exclude>
<directory>./Tests/</directory>
<directory>./Resources/</directory>
<directory>./vendor/</directory>
</exclude>
</whitelist>
</filter>

<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" bootstrap="vendor/autoload.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory>./</directory>
</include>
<exclude>
<directory>./Tests/</directory>
<directory>./Resources/</directory>
<directory>./vendor/</directory>
</exclude>
</coverage>
<testsuites>
<testsuite name="Ekino New Relic Test Suite">
<directory>./Tests</directory>
</testsuite>
</testsuites>
</phpunit>

0 comments on commit 9291a12

Please sign in to comment.