-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathphpunit.xml.dist
32 lines (30 loc) · 1.24 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
<?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="vendor/autoload.php"
cacheDirectory=".phpunit.result.cache"
executionOrder="depends,defects"
shortenArraysForExportThreshold="10"
beStrictAboutOutputDuringTests="true"
displayDetailsOnPhpunitDeprecations="true"
failOnDeprecation="false"
>
<php>
<env name="SYMFONY_DEPRECATIONS_HELPER" value="max[self]=999999&quiet[]=indirect"/>
<env name="BLACKFIRE_CLIENT_ID" value="12341234-12341234"/>
<env name="BLACKFIRE_CLIENT_TOKEN" value="token-12341234123412341234123412341234123412341234"/>
<env name="BLACKFIRE_BASIC_AUTH_USERNAME" value="admin"/>
<env name="BLACKFIRE_BASIC_AUTH_PASSWORD" value="admin"/>
</php>
<testsuites>
<testsuite name="default">
<directory>Player/Tests</directory>
</testsuite>
</testsuites>
<source ignoreIndirectDeprecations="true" restrictNotices="true" restrictWarnings="true">
<include>
<directory>src</directory>
</include>
</source>
</phpunit>