This repository has been archived by the owner on Jan 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
phpunit.xml.dist
44 lines (37 loc) · 1.67 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
<?xml version="1.0" encoding="UTF-8"?>
<!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.1/phpunit.xsd"
backupGlobals="false"
colors="true"
bootstrap="vendor/autoload.php"
>
<php>
<ini name="error_reporting" value="-1" />
<env name="KERNEL_CLASS" value="App\Kernel" />
<env name="APP_ENV" value="test" />
<env name="APP_DEBUG" value="1" />
<env name="APP_SECRET" value="s$cretf0rt3st" />
<env name="SHELL_VERBOSITY" value="-1" />
<env name="SYMFONY_DEPRECATIONS_HELPER" value="weak" />
<env name="CONTENTFUL_SPACE_ID" value="qz0n5cdakyl9" />
<env name="CONTENTFUL_DELIVERY_TOKEN" value="580d5944194846b690dd89b630a1cb98a0eef6a19b860ef71efc37ee8076ddb8" />
<env name="CONTENTFUL_PREVIEW_TOKEN" value="e8fc39d9661c7468d0285a7ff949f7a23539dd2e686fcb7bd84dc01b392d698b" />
<env name="CONTENTFUL_DELIVERY_URL" value="https://cdn.contentful.com/" />
<env name="CONTENTFUL_PREVIEW_URL" value="https://preview.contentful.com/" />
<!-- define your env variables for the test env here -->
</php>
<testsuites>
<testsuite name="Project Test Suite">
<directory>tests/</directory>
</testsuite>
</testsuites>
<listeners>
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
</listeners>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">tests</directory>
</whitelist>
</filter>
</phpunit>