Skip to content

Commit

Permalink
Merge pull request #341 from localheinz/fix/phpunit
Browse files Browse the repository at this point in the history
Fix: Clean up phpunit.xml.dist
  • Loading branch information
dbu committed Jun 4, 2019
2 parents 8a66c0e + 1c56088 commit b21c39d
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions phpunit.xml.dist
@@ -1,13 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>

<phpunit bootstrap="./vendor/autoload.php"
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/7.4/phpunit.xsd"
bootstrap="./vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
syntaxCheck="true">
convertWarningsToExceptions="true">
<php>
<env name="SHELL_VERBOSITY" value="-1" />
<server name="KERNEL_DIR" value="./tests/Resources/app" />
<server name="KERNEL_CLASS" value="AppKernel" />
</php>

<testsuites>
Expand All @@ -29,9 +32,4 @@
</exclude>
</whitelist>
</filter>

<php>
<server name="KERNEL_DIR" value="./tests/Resources/app" />
<server name="KERNEL_CLASS" value="AppKernel" />
</php>
</phpunit>

0 comments on commit b21c39d

Please sign in to comment.