Skip to content

Commit

Permalink
Prevent phpunit from showing .blade.php stub files on terminal
Browse files Browse the repository at this point in the history
  • Loading branch information
antonioribeiro committed Mar 18, 2020
1 parent 0876447 commit 2171b55
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnError="true"
stopOnFailure="true"
verbose="true"
>
<testsuites>
Expand All @@ -17,8 +17,11 @@
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<whitelist processUncoveredFilesFromWhitelist="false">
<directory suffix=".php">./src</directory>
<exclude>
<directory suffix=".blade.php">./tests</directory>
</exclude>
</whitelist>
</filter>
<logging>
Expand Down

0 comments on commit 2171b55

Please sign in to comment.