-
-
Notifications
You must be signed in to change notification settings - Fork 301
/
phpunit.ci.xml
52 lines (52 loc) · 2.15 KB
/
phpunit.ci.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
49
50
51
52
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd">
<coverage>
<report>
<clover outputFile="clover.xml"/>
<text outputFile="php://stdout" showUncoveredFiles="false"/>
</report>
</coverage>
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
<testsuite name="Feature_v1">
<directory suffix="Test.php">./tests/Feature_v1</directory>
<exclude>./tests/Feature_v1/Base/BasePhotoTest.php</exclude>
<exclude>./tests/Feature_v1/Base/BasePhotosRotateTest.php</exclude>
<exclude>./tests/Feature_v1/Base/BaseSharingTest.php</exclude>
<exclude>./tests/Feature_v1/LibUnitTests/AlbumsUnitTest.php</exclude>
<exclude>./tests/Feature_v1/LibUnitTests/PhotosUnitTest.php</exclude>
<exclude>./tests/Feature_v1/LibUnitTests/RootAlbumUnitTest.php</exclude>
<exclude>./tests/Feature_v1/LibUnitTests/SessionUnitTest.php</exclude>
<exclude>./tests/Feature_v1/LibUnitTests/SharingUnitTest.php</exclude>
<exclude>./tests/Feature_v1/LibUnitTests/UsersUnitTest.php</exclude>
</testsuite>
<testsuite name="Feature_v2">
<directory suffix="Test.php">./tests/Feature_v2</directory>
<exclude>./tests/Feature_v2/Base/BaseApiV2Test.php</exclude>
<exclude>./tests/Feature_v2/Base/BaseV2Test.php</exclude>
</testsuite>
</testsuites>
<extensions>
<bootstrap class="Tests\BootExtension"/>
</extensions>
<logging/>
<php>
<env name="APP_ENV" value="testing"/>
<env name="DB_LOG_SQL" value="true"/>
<env name="DB_LOG_SQL_EXPLAIN" value="true"/>
<env name="BCRYPT_ROUNDS" value="4"/>
<env name="CACHE_DRIVER" value="array"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="QUEUE_CONNECTION" value="sync"/>
<env name="MAIL_DRIVER" value="array"/>
</php>
<source>
<include>
<directory suffix=".php">
./app
</directory>
</include>
</source>
</phpunit>