-
Notifications
You must be signed in to change notification settings - Fork 85
/
phpunit.xml
29 lines (29 loc) · 1010 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="test_bootstrap.php"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
>
<testsuites>
<testsuite name="Unit Test">
<directory>./tests/</directory>
<exclude>./tests/integration</exclude>
</testsuite>
<testsuite name="All">
<directory>./tests/</directory>
</testsuite>
<testsuite name="Integration Test">
<directory>./tests/integration</directory>
</testsuite>
</testsuites>
<php>
<env name="SERVER_KEY" value="62b15a7d-e5f8-4b3c-9eab-ca827ca37f55"/>
<env name="CLIENT_KEY" value="156814b4-bf20-4e2b-8b87-073112fafb9a"/>
</php>
</phpunit>