🔧 N°3091 PHPunit XML : fix correct PHP INI settings

see https://phpunit.readthedocs.io/en/8.5/configuration.html#the-php-element
This commit is contained in:
Pierre Goiffon
2022-05-02 15:24:59 +02:00
parent 0de15d040f
commit 5eac1b8730
2 changed files with 11 additions and 2 deletions

View File

@@ -18,8 +18,10 @@
>
<php>
<ini name="display_errors" value="true"/>
<ini name="error_reporting" value="true"/>
<ini name="error_reporting" value="E_ALL"/>
<ini name="display_errors" value="On"/>
<ini name="log_errors" value="On"/>
<ini name="html_errors" value="On"/>
</php>
<testsuites>

View File

@@ -17,6 +17,13 @@
verbose="true"
>
<php>
<ini name="error_reporting" value="E_ALL"/>
<ini name="display_errors" value="On"/>
<ini name="log_errors" value="On"/>
<ini name="html_errors" value="On"/>
</php>
<testsuites>
<testsuite name="PostBuildIntegration">
<directory>postbuild_integration</directory>