forked from Sylius/Sylius
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
39 lines (32 loc) · 1.28 KB
/
phpunit.xml.dist
File metadata and controls
39 lines (32 loc) · 1.28 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
colors="true"
bootstrap="config/bootstrap.php"
>
<testsuites>
<testsuite name="all">
<directory>tests</directory>
<directory>src/Sylius/Behat/tests</directory>
</testsuite>
<testsuite name="sylius">
<directory>tests</directory>
</testsuite>
<testsuite name="sylius-behat">
<directory>src/Sylius/Behat/tests</directory>
</testsuite>
</testsuites>
<php>
<ini name="error_reporting" value="-1" />
<!-- ###+ symfony/framework-bundle ### -->
<env name="APP_DEBUG" value="0"/>
<env name="APP_ENV" value="test"/>
<!-- See: https://github.com/symfony/framework-bundle/commit/0681ef3b829f9da165b6bcfe2bc0dd626a86c18d -->
<env name="APP_RUNTIME_MODE" value="web=1"/>
<env name="SHELL_VERBOSITY" value="-1" />
<!-- ###- symfony/framework-bundle ### -->
<server name="IS_DOCTRINE_ORM_SUPPORTED" value="true" />
<server name="ESCAPE_JSON" value="true" />
<server name="KERNEL_CLASS" value="App\Kernel" />
</php>
</phpunit>