Skip to content

Commit

Permalink
Migrate phpunit config
Browse files Browse the repository at this point in the history
  • Loading branch information
samdark committed Sep 6, 2020
1 parent d1e89c7 commit 0c3a360
Showing 1 changed file with 15 additions and 23 deletions.
38 changes: 15 additions & 23 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,25 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
backupGlobals="false"
colors="true"
verbose="true"
bootstrap="tests/bootstrap.php"
failOnRisky="true"
failOnWarning="true">
<testsuites>
<testsuite name="Yii - Arrays tests">
<directory>./tests</directory>
</testsuite>
</testsuites>

<filter>
<whitelist>
<directory>./</directory>
<exclude>
<directory>./tests</directory>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" backupGlobals="false" colors="true" verbose="true" bootstrap="tests/bootstrap.php" failOnRisky="true" failOnWarning="true">
<coverage>
<include>
<directory>./</directory>
</include>
<exclude>
<directory>./tests</directory>
<directory>./vendor</directory>
</exclude>
</coverage>
<testsuites>
<testsuite name="Yii - Arrays tests">
<directory>./tests</directory>
</testsuite>
</testsuites>
</phpunit>

0 comments on commit 0c3a360

Please sign in to comment.