Skip to content

Commit

Permalink
Merge pull request #192 from Majkl578/dev/phpunit-refresh
Browse files Browse the repository at this point in the history
Update PHPUnit config
  • Loading branch information
jwage authored Apr 28, 2018
2 parents 020b87e + fa8dbfa commit 7574f96
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>

<phpunit backupGlobals="false"
backupStaticAttributes="false"
<?xml version="1.0" encoding="utf-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
beStrictAboutOutputDuringTests="true"
beStrictAboutTodoAnnotatedTests="true"
failOnRisky="true"
failOnWarning="true"
bootstrap="./tests/Doctrine/Tests/TestInit.php"
>
<php>
<ini name="error_reporting" value="-1" />
</php>

<testsuites>
<testsuite name="Doctrine Annotations Test Suite">
<directory>./tests/Doctrine/</directory>
Expand All @@ -19,7 +20,7 @@

<filter>
<whitelist>
<directory>./lib/Doctrine/</directory>
<directory suffix=".php">./lib/Doctrine/</directory>
</whitelist>
</filter>

Expand Down

0 comments on commit 7574f96

Please sign in to comment.