|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
3 | | - xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.3/phpunit.xsd" |
4 | | - bootstrap="tests/bootstrap.php" |
5 | | - colors="true" |
6 | | - failOnRisky="true" |
7 | | - verbose="true" |
8 | | - beStrictAboutChangesToGlobalState="true" |
9 | | - beStrictAboutOutputDuringTests="true" |
10 | | - beStrictAboutTestsThatDoNotTestAnything="false" |
11 | | -> |
12 | | - <php> |
13 | | - <!-- Disable E_USER_DEPRECATED setting E_ALL & ~E_USER_DEPRECATED--> |
14 | | - <ini name="error_reporting" value="16383"/> |
15 | | - <ini name="memory_limit" value="-1" /> |
16 | | - </php> |
17 | | - <testsuites> |
18 | | - <testsuite name="Yaml tests"> |
19 | | - <directory>tests/Elasticsearch/Tests/Yaml/Platinum</directory> |
20 | | - </testsuite> |
21 | | - </testsuites> |
22 | | - <groups> |
23 | | - <include> |
24 | | - <group>platinum</group> |
25 | | - </include> |
26 | | - </groups> |
27 | | - <filter> |
28 | | - <whitelist> |
29 | | - <directory suffix=".php">src</directory> |
30 | | - </whitelist> |
31 | | - </filter> |
32 | | - <logging> |
33 | | - <log type="junit" target="tests/yaml-test-junit.xml"/> |
34 | | - </logging> |
| 2 | +<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" bootstrap="tests/bootstrap.php" colors="true" failOnRisky="true" verbose="true" beStrictAboutChangesToGlobalState="true" beStrictAboutOutputDuringTests="true" beStrictAboutTestsThatDoNotTestAnything="false"> |
| 3 | + <coverage> |
| 4 | + <include> |
| 5 | + <directory suffix=".php">src</directory> |
| 6 | + </include> |
| 7 | + </coverage> |
| 8 | + <php> |
| 9 | + <!-- Disable E_USER_DEPRECATED setting E_ALL & ~E_USER_DEPRECATED--> |
| 10 | + <ini name="error_reporting" value="16383"/> |
| 11 | + <ini name="memory_limit" value="-1"/> |
| 12 | + </php> |
| 13 | + <testsuites> |
| 14 | + <testsuite name="Yaml tests"> |
| 15 | + <directory>tests/Elasticsearch/Tests/Yaml/Platinum</directory> |
| 16 | + </testsuite> |
| 17 | + </testsuites> |
| 18 | + <groups> |
| 19 | + <include> |
| 20 | + <group>platinum</group> |
| 21 | + </include> |
| 22 | + </groups> |
| 23 | + <logging> |
| 24 | + <junit outputFile="tests/yaml-test-junit.xml"/> |
| 25 | + </logging> |
35 | 26 | </phpunit> |
0 commit comments