-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
29 lines (29 loc) · 1.18 KB
/
phpunit.xml
File metadata and controls
29 lines (29 loc) · 1.18 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
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" colors="true" verbose="true"
timeoutForLargeTests="300" timeoutForMediumTests="5" timeoutForSmallTests="1" failOnRisky="true"
cacheResult="true" cacheResultFile="../var/qa/.phpunit.result.cache"
executionOrder="depends,random">
<coverage>
<include>
<directory suffix=".php">../src</directory>
</include>
<exclude>
<directory suffix=".php">../src/Part4/Chapter12</directory>
</exclude>
<report>
<clover outputFile="../var/qa/phpunit_logs/coverage.clover"/>
<html outputDirectory="../var/qa/phpunit_coverage"/>
<text outputFile="php://stdout"/>
<xml outputDirectory="../var/qa/phpunit_logs/coverage-xml"/>
</report>
</coverage>
<logging>
<junit outputFile="../var/qa/phpunit_logs/phpunit.junit.xml"/>
</logging>
<testsuites>
<testsuite name="tests">
<directory suffix="Test.php">../tests/</directory>
</testsuite>
</testsuites>
</phpunit>