Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / consolidation / robo / phpunit.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <phpunit
4     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5     xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
6     backupGlobals="false"
7     backupStaticAttributes="false"
8     beStrictAboutChangesToGlobalState="true"
9     beStrictAboutOutputDuringTests="true"
10     beStrictAboutTestsThatDoNotTestAnything="true"
11     bootstrap="vendor/autoload.php"
12     colors="true"
13     columns="max"
14     convertErrorsToExceptions="true"
15     convertNoticesToExceptions="true"
16     convertWarningsToExceptions="true"
17     processIsolation="false"
18     stopOnError="false"
19     stopOnFailure="false"
20     stopOnRisky="false"
21     verbose="true"
22 >
23     <php>
24         <ini name="error_reporting" value="E_ALL" />
25     </php>
26
27     <filter>
28         <whitelist processUncoveredFilesFromWhitelist="true">
29             <directory suffix=".php">./src</directory>
30         </whitelist>
31     </filter>
32
33     <logging>
34         <log type="coverage-clover" target="build/logs/clover.xml"/>
35     </logging>
36 </phpunit>