Skip to content

Commit e809601

Browse files
committed
fix: phpunit warning, exclude files
1 parent 870732f commit e809601

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

phpunit.xml.dist

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,22 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
backupGlobals="false"
4+
bootstrap="vendor/autoload.php"
5+
colors="true"
6+
processIsolation="false"
7+
stopOnFailure="false"
8+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
9+
cacheDirectory=".phpunit.cache"
10+
backupStaticProperties="false"
11+
>
312
<testsuites>
413
<testsuite name="Package Test Suite">
514
<directory suffix=".php">./tests/</directory>
615
<exclude>./tests/views/</exclude>
16+
<exclude>./tests/DataTables/</exclude>
17+
<exclude>./tests/Providers/</exclude>
18+
<exclude>./tests/Models/</exclude>
19+
<exclude>./tests/TestCase.php</exclude>
720
</testsuite>
821
</testsuites>
922
</phpunit>

0 commit comments

Comments
 (0)