Skip to content

Commit

Permalink
Merge pull request #3725 from laravel/phpunit
Browse files Browse the repository at this point in the history
Fixed up the phpunit config
  • Loading branch information
taylorotwell committed Apr 1, 2016
2 parents 72581c0 + 28ea52d commit 5450b31
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 @@ -10,12 +10,15 @@
stopOnFailure="false">
<testsuites>
<testsuite name="Application Test Suite">
<directory>./tests/</directory>
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">app/</directory>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./app</directory>
<exclude>
<file>./app/Http/routes.php</file>
</exclude>
</whitelist>
</filter>
<php>
Expand Down

0 comments on commit 5450b31

Please sign in to comment.