Skip to content

Commit 0c2df6e

Browse files
author
Cliff Odijk
committed
Sync phpunit.xml.dist from parent to child packages
1 parent 98456fd commit 0c2df6e

File tree

1 file changed

+21
-11
lines changed

1 file changed

+21
-11
lines changed

phpunit.xml.dist

Lines changed: 21 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,35 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit bootstrap="./tests/bootstrap.php" colors="true">
2+
3+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
5+
backupGlobals="false"
6+
colors="true"
7+
bootstrap="tests/bootstrap.php"
8+
failOnRisky="true"
9+
failOnWarning="true"
10+
>
11+
<php>
12+
<ini name="error_reporting" value="-1" />
13+
<ini name="intl.default_locale" value="en" />
14+
<ini name="intl.error_level" value="0" />
15+
<ini name="memory_limit" value="-1" />
16+
</php>
17+
318
<testsuites>
419
<testsuite>
5-
<directory suffix="Test.php">./tests</directory>
20+
<directory>./tests/</directory>
621
</testsuite>
722
</testsuites>
23+
824
<groups>
925
<exclude>
1026
<group>SymfonyBridgeProxyManagerDependency</group>
1127
</exclude>
1228
</groups>
29+
1330
<filter>
1431
<whitelist>
15-
<directory>./</directory>
16-
<exclude>
17-
<directory>./tests</directory>
18-
<directory>./vendor</directory>
19-
</exclude>
32+
<directory>./src</directory>
2033
</whitelist>
2134
</filter>
22-
<logging>
23-
<log type="coverage-clover" target="coverage.xml"/>
24-
</logging>
25-
</phpunit>
35+
</phpunit>

0 commit comments

Comments
 (0)