-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphpunit.xml
More file actions
48 lines (48 loc) · 1.81 KB
/
phpunit.xml
File metadata and controls
48 lines (48 loc) · 1.81 KB
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"?>
<!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
<!--suppress XmlHighlighting -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd" colors="true" bootstrap="./vendor/autoload.php" cacheDirectory=".phpunit.cache">
<coverage>
<report>
<clover outputFile="tests/clover.xml"/>
<text outputFile="tests/coverage.txt"/>
</report>
</coverage>
<php>
<ini name="error_reporting" value="-1"/>
<server name="KERNEL_CLASS" value="AppKernel"/>
<env name="SYMFONY_DEPRECATIONS_HELPER" value="disabled"/>
</php>
<testsuites>
<testsuite name="Project Test Suite">
<directory>src</directory>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>integration</group>
</exclude>
</groups>
<logging>
<!--<!–<log type="tap" target="tests/build/report.tap"/>–>-->
<!--<log type="junit" target="tests/build/report.junit.xml"/>-->
<!--<log type="coverage-html" target="tests/build/coverage" charset="UTF-8" yui="true" highlight="true"/>-->
</logging>
<source>
<include>
<directory suffix=".php">src</directory>
<directory suffix=".php">tests</directory>
</include>
<exclude>
<directory>src/Application/Bazar</directory>
<directory>src/Application/CLI</directory>
<directory>src/Domain/Bazar</directory>
<file>src/Application/QueueWorker.php</file>
<file>src/Application/myBootstrap.php</file>
<file>src/Application/ScanWiki2DB.php</file>
<file>src/Infrastructure/WstatImport.php</file>
<file>src/Domain/Tests/PredictNameFirstNameTest.php</file>
<file>src/Domain/Bazar/ParseRawExternLinkTest.php</file>
</exclude>
</source>
</phpunit>