Skip to content

Commit

Permalink
feat: update phpunit.xml.dist
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanpoensgen committed Apr 6, 2024
1 parent 7e5d0b3 commit 1a3b89a
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,29 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>

<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
bootstrap="tests/TestBootstrap.php"
cacheResult="false">

<php>
<ini name="error_reporting" value="-1"/>
<server name="KERNEL_CLASS" value="Shopware\Core\Kernel"/>
<env name="APP_ENV" value="test"/>
<env name="APP_DEBUG" value="1"/>
<env name="APP_SECRET" value="s$cretf0rt3st"/>
<env name="SHELL_VERBOSITY" value="-1"/>
<env name="SYMFONY_DEPRECATIONS_HELPER" value="disabled" />
<env name="SYMFONY_DEPRECATIONS_HELPER" value="disabled"/>
</php>

<testsuites>
<testsuite name="SptecOrderComments Testsuite">
<directory>tests</directory>
</testsuite>
</testsuites>

<coverage>
<coverage/>
<source>
<include>
<directory suffix=".php">./</directory>
</include>
</coverage>
</source>
</phpunit>

0 comments on commit 1a3b89a

Please sign in to comment.