-
Notifications
You must be signed in to change notification settings - Fork 19
/
phpunit.xml.dist
48 lines (43 loc) · 1.69 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
37
38
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
cacheResultFile="dist/.phpunit.result.cache"
bootstrap="vendor/autoload.php"
beStrictAboutChangesToGlobalState="true"
beStrictAboutOutputDuringTests="true"
colors="true"
executionOrder="random">
<php>
<env name="WEBMOZARTS_CONSOLE_PARALLELIZATION_CPU_COUNT" value="2"/>
</php>
<extensions>
<bootstrap class="Webmozarts\Console\Parallelization\PHPUnit\PHPUnitExtension"/>
<bootstrap class="Webmozarts\StrictPHPUnit\StrictPHPUnitExtension"/>
</extensions>
<testsuites>
<testsuite name="Tests">
<directory>tests/</directory>
<exclude>tests/AutoReview</exclude>
</testsuite>
<testsuite name="AutoReview">
<directory>tests/AutoReview</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory>src</directory>
</include>
<exclude>
<file>src/CpuCoreCounter.php</file>
<file>src/Deprecation.php</file>
<file>src/ErrorHandler/NullErrorHandler.php</file>
<file>src/Logger/MemorySizeFormatter.php</file>
<file>src/Logger/NullLogger.php</file>
<file>src/Logger/DebugProgressBarFactory.php</file>
<file>src/ParallelCommand.php</file>
<file>src/Parallelization.php</file>
<file>src/Process/PhpExecutableFinder.php</file>
<file>src/Process/SymfonyProcessLauncherFactory.php</file>
</exclude>
</source>
</phpunit>