This repository was archived by the owner on May 1, 2019. It is now read-only.
File tree 2 files changed +37
-0
lines changed
2 files changed +37
-0
lines changed Original file line number Diff line number Diff line change 10
10
convertNoticesToExceptions =" true"
11
11
convertWarningsToExceptions =" true"
12
12
processIsolation =" false"
13
+ stopOnError =" false"
13
14
stopOnFailure =" false"
15
+ stopOnIncomplete =" false"
16
+ stopOnSkipped =" false"
14
17
verbose =" true"
15
18
>
16
19
<testsuite name =" Test all modules" >
Original file line number Diff line number Diff line change
1
+ <phpunit
2
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
+ xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.8/phpunit.xsd"
4
+ bootstrap="bootstrap.php"
5
+ beStrictAboutChangesToGlobalState="true"
6
+ beStrictAboutOutputDuringTests="true"
7
+ beStrictAboutTestsThatDoNotTestAnything="true"
8
+ colors="true"
9
+ columns="max"
10
+ convertErrorsToExceptions="true"
11
+ convertNoticesToExceptions="true"
12
+ convertWarningsToExceptions="true"
13
+ stopOnError="false"
14
+ stopOnFailure="false"
15
+ stopOnIncomplete="false"
16
+ stopOnSkipped="false"
17
+ verbose="true"
18
+ >
19
+ <php>
20
+ <ini name="error_reporting" value="-1" />
21
+ <ini name="display_errors" value="1" />
22
+ <ini name="display_startup_errors" value="1" />
23
+ </php>
24
+ <testsuites>
25
+ <testsuite name="R29 Integration Tests">
26
+ <directory>.</directory>
27
+ </testsuite>
28
+ </testsuites>
29
+ <filter>
30
+ <whitelist processUncoveredFilesFromWhitelist="true">
31
+ <directory suffix=".php">../../src</directory>
32
+ </whitelist>
33
+ </filter>
34
+ </phpunit>
You can’t perform that action at this time.
0 commit comments