-
Notifications
You must be signed in to change notification settings - Fork 106
/
phpunit.xml.dist
36 lines (36 loc) · 1.09 KB
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<phpunit bootstrap="vendor/autoload.php" colors="true">
<testsuites>
<testsuite name="tests">
<directory>tests</directory>
<file>tests/DemosTest.php</file>
<file>tests/DemosHttpTest.php</file>
<file>tests/DemosHttpNoExitTest.php</file>
<exclude>tests/DemosTest.php</exclude>
<exclude>tests/DemosHttpTest.php</exclude>
<exclude>tests/DemosHttpNoExitTest.php</exclude>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>demos_http</group>
<group>require_session</group>
</exclude>
</groups>
<extensions>
<bootstrap class="Ergebnis\PHPUnit\SlowTestDetector\Extension" />
</extensions>
<source>
<include>
<directory>src</directory>
<directory>tests</directory>
</include>
<exclude>
<directory>src/Behat</directory>
</exclude>
</source>
<coverage>
<report>
<php outputFile="coverage/phpunit.cov" />
</report>
</coverage>
</phpunit>