Skip to content
This repository was archived by the owner on May 1, 2019. It is now read-only.

Commit 324f96a

Browse files
committed
Fix: Never ever stop
1 parent 690a521 commit 324f96a

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed

phpunit.xml

+3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@
1010
convertNoticesToExceptions="true"
1111
convertWarningsToExceptions="true"
1212
processIsolation="false"
13+
stopOnError="false"
1314
stopOnFailure="false"
15+
stopOnIncomplete="false"
16+
stopOnSkipped="false"
1417
verbose="true"
1518
>
1619
<testsuite name="Test all modules">

phpunit.xml.o

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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>

0 commit comments

Comments
 (0)