Skip to content

Commit

Permalink
Update phpunit.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
santigarcor committed Mar 1, 2024
1 parent d439ca1 commit bd731fe
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
backupGlobals="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
verbose="true"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
backupStaticProperties="false"
>
<testsuites>
<testsuite name="Laratrust Test Suite">
<directory suffix="Test.php">./tests/</directory>
</testsuite>
</testsuites>
</phpunit>
<testsuites>
<testsuite name="Laratrust Test Suite">
<directory suffix="Test.php">./tests/</directory>
<exclude>./tests/Middleware/MiddlewareTest.php</exclude>
</testsuite>
</testsuites>
</phpunit>

0 comments on commit bd731fe

Please sign in to comment.