Skip to content

Commit

Permalink
random updates (#239)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaEstes authored Oct 30, 2024
1 parent 908549c commit 1f0191f
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.3/phpunit.xsd"
backupGlobals="false"
colors="true"
bootstrap="vendor/autoload.php"
failOnRisky="true"
failOnWarning="true"
>

<php>
<ini name="error_reporting" value="-1" />
</php>

<testsuites>
<testsuite name="filesystem">
<directory>./Tests/</directory>
</testsuite>
</testsuites>

<source>
<include>
<directory>.</directory>
</include>
<exclude>
<directory>./Tests</directory>
<directory>./vendor</directory>
</exclude>
</source>
</phpunit>

0 comments on commit 1f0191f

Please sign in to comment.