Skip to content

Commit 8b509ac

Browse files
authored
random updates (#239)
1 parent fc6cf09 commit 8b509ac

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

phpunit.xml.dist

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.3/phpunit.xsd"
5+
backupGlobals="false"
6+
colors="true"
7+
bootstrap="vendor/autoload.php"
8+
failOnRisky="true"
9+
failOnWarning="true"
10+
>
11+
12+
<php>
13+
<ini name="error_reporting" value="-1" />
14+
</php>
15+
16+
<testsuites>
17+
<testsuite name="feature-toggle">
18+
<directory>./Tests/</directory>
19+
</testsuite>
20+
</testsuites>
21+
22+
<source>
23+
<include>
24+
<directory>.</directory>
25+
</include>
26+
<exclude>
27+
<directory>./Tests</directory>
28+
<directory>./vendor</directory>
29+
</exclude>
30+
</source>
31+
</phpunit>

0 commit comments

Comments
 (0)