Skip to content

Commit

Permalink
being more strict on phpunit tests now that the tz issue is fixed - m…
Browse files Browse the repository at this point in the history
…ostly from tymondesigns#676
  • Loading branch information
tymondesigns committed Apr 18, 2016
1 parent 2f123f5 commit dfd929d
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php"
backupGlobals="false"
<phpunit backupGlobals="false"
backupStaticAttributes="false"
beStrictAboutTestsThatDoNotTestAnything="false"
beStrictAboutOutputDuringTests="true"
bootstrap="vendor/autoload.php"
colors="true"
verbose="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="false"
convertWarningsToExceptions="true"
failOnRisky="true"
failOnWarning="true"
processIsolation="false"
stopOnFailure="false">
stopOnError="false"
stopOnFailure="false"
verbose="true">
<testsuites>
<testsuite name="jwt-auth Test Suite">
<directory>tests</directory>
Expand Down

0 comments on commit dfd929d

Please sign in to comment.