This repository has been archived by the owner on Jun 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
48 lines (41 loc) · 1.49 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php"
backupGlobals="false"
backupStaticAttributes="false"
beStrictAboutTestsThatDoNotTestAnything="false"
colors="true"
verbose="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
failOnRisky="true"
failOnWarning="true"
stopOnFailure="false">
<php>
<ini name="error_reporting" value="-1"/>
<env name="REDIS_CONNECTION_DSN" value="tcp://localhost:6379"/>
</php>
<testsuites>
<testsuite name="PHP Service Bus common component">
<directory>./vendor/php-service-bus/common/tests/</directory>
</testsuite>
<testsuite name="Common transport implementation interfaces">
<directory>./vendor/php-service-bus/transport-common/tests/</directory>
</testsuite>
<testsuite name="Redis transport implementation">
<directory>./vendor/php-service-bus/transport-redis/tests/</directory>
</testsuite>
<testsuite name="Redis transport module">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./</directory>
<exclude>
<directory>./tests</directory>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>
</phpunit>