Skip to content

Commit

Permalink
migrate phpunit.xml
Browse files Browse the repository at this point in the history
fix #158
  • Loading branch information
Gummibeer committed Jan 2, 2021
1 parent 3b22822 commit 4dd6112
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php"
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
bootstrap="vendor/autoload.php"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
Expand All @@ -11,15 +13,15 @@
stopOnFailure="false">
<testsuites>
<testsuite name="Spatie Test Suite">
<directory>tests</directory>
<directory suffix="Test.php">tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<coverage>
<include>
<directory suffix=".php">src/Exceptions</directory>
<file>./src/BaseType.php</file>
<file>./src/Type.php</file>
<file>./src/Graph.php</file>
</whitelist>
</filter>
</include>
</coverage>
</phpunit>

0 comments on commit 4dd6112

Please sign in to comment.