forked from basho/riak-phppb-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
29 lines (28 loc) · 1.04 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true">
<testsuites>
<testsuite name="Unit Tests">
<directory>tests/unit</directory>
<directory>vendor/basho/riak/tests/unit</directory>
</testsuite>
<testsuite name="Functional Tests">
<directory>tests/functional</directory>
<directory>vendor/basho/riak/tests/functional</directory>
<exclude>vendor/basho/riak/tests/functional/SecurityFeaturesTest.php</exclude>
<exclude>vendor/basho/riak/tests/functional/TimeSeriesOperationsTest.php</exclude>
</testsuite>
<testsuite name="Scenario Tests">
<directory>tests/scenario</directory>
<directory>vendor/basho/riak/tests/scenario</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>src</directory>
<directory>vendor/basho/riak/src</directory>
</whitelist>
</filter>
<php>
<env name="PB_INTERFACE" value="1"/>
</php>
</phpunit>