-
Notifications
You must be signed in to change notification settings - Fork 41
/
phpunit.xml
32 lines (32 loc) · 1.19 KB
/
phpunit.xml
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
<phpunit
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="kucoin">
<directory suffix="Test.php">tests</directory>
<exclude>tests/TestCase.php</exclude>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
<exclude>
<directory suffix=".php">./vendor</directory>
</exclude>
</whitelist>
</filter>
<php>
<env name="API_KEY" value="key" force="false"/>
<env name="API_SECRET" value="secret" force="false"/>
<env name="API_PASSPHRASE" value="passphrase" force="false"/>
<env name="API_BASE_URI" value="https://api.kucoin.com" force="false"/>
<env name="API_SKIP_VERIFY_TLS" value="0" force="false"/>
<env name="API_DEBUG_MODE" value="1" force="false"/>
<env name="API_KEY_VERSION" value="2" force="false"/>
</php>
</phpunit>