-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
35 lines (35 loc) · 1.51 KB
/
phpunit.xml
File metadata and controls
35 lines (35 loc) · 1.51 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
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.2/phpunit.xsd" colors="true" timeoutForLargeTests="300" timeoutForMediumTests="5" timeoutForSmallTests="1" failOnRisky="true" cacheResult="true" executionOrder="depends,random" cacheDirectory="../../../../../var/qa/phpunit.cache" bootstrap="../../../../../tests/bootstrap.php">
<php>
<ini name="display_errors" value="1"/>
<ini name="error_reporting" value="-1"/>
<!-- Symfony Stuff //-->
<server name="APP_ENV" value="test" force="true"/>
<server name="SHELL_VERBOSITY" value="3"/>
<server name="KERNEL_CLASS" value="App\Kernel"/>
<server name="SYMFONY_PHPUNIT_REMOVE" value=""/>
<server name="SYMFONY_PHPUNIT_VERSION" value="10.2"/>
<!-- Symfony Stuff //-->
</php>
<coverage>
<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>
<source>
<include>
<directory suffix=".php">../../../../../src</directory>
</include>
</source>
</phpunit>