forked from contentful/contentful-laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
27 lines (24 loc) · 923 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php">
<testsuites>
<testsuite name="unit">
<directory>tests</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-html" target="build/coverage" lowUpperBound="35" highLowerBound="70" />
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</whitelist>
</filter>
<php>
<env name="CONTENTFUL_SPACE_ID" value="cfexampleapi" />
<env name="CONTENTFUL_DELIVERY_TOKEN" value="b4c0n73n7fu1" />
<env name="CONTENTFUL_ENVIRONMENT_ID" value="master" />
<env name="CONTENTFUL_USE_PREVIEW" value="1" />
<env name="CONTENTFUL_DEFAULT_LOCALE" value="en-US" />
</php>
</phpunit>