forked from area17/twill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
79 lines (79 loc) · 3.63 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
verbose="true"
>
<testsuites>
<testsuite name="Twill Test Suites">
<file>tests/integration/Commands/BuildTest.php</file>
<file>tests/integration/Commands/ListBlocksTest.php</file>
<file>tests/integration/Commands/ListIconsTest.php</file>
<file>tests/integration/Commands/MakeBlockTest.php</file>
<file>tests/integration/Commands/MakeModuleTest.php</file>
<file>tests/integration/Commands/SuperadminTest.php</file>
<file>tests/integration/Commands/UpdateTest.php</file>
<file>tests/integration/FileLibraryTest.php</file>
<file>tests/integration/LoginTest.php</file>
<file>tests/integration/MediaLibraryTest.php</file>
<file>tests/integration/ModulesAuthorsTest.php</file>
<file>tests/integration/ModulesCategoriesTest.php</file>
<file>tests/integration/UsersTest.php</file>
<file>tests/integration/RoutesTest.php</file>
<file>tests/integration/PasswordsTest.php</file>
<file>tests/integration/CapsulesTest.php</file>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="false">
<directory suffix=".php">./src</directory>
<exclude>
<directory suffix=".blade.php">./tests</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="tests/coverage/" lowUpperBound="35" highLowerBound="70"/>
<log type="coverage-clover" target="tests/coverage/coverage-clover.xml" lowUpperBound="35" highLowerBound="70"/>
<log type="coverage-text" target="php://stdout" showOnlySummary="true" showUncoveredFiles="false"/>
</logging>
<php>
<env name="APP_KEY" value="base64:DV8kQN5a+4MwAIQ5uk1WNafxO+/Efab0K20uVMDJ2UE="/>
<env name="APP_ENV" value="testing"/>
<env name="APP_URL" value="http://twill.test"/>
<env name="APP_DEBUG" value="true"/>
<env name="TELESCOPE_ENABLED" value="false"/>
<env name="BCRYPT_ROUNDS" value="4"/>
<env name="CACHE_DRIVER" value="array"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="QUEUE_DRIVER" value="sync"/>
<env name="MAIL_DRIVER" value="array"/>
<env name="DB_CONNECTION" value="sqlite"/>
<env name="DB_DATABASE" value=":memory:"/>
<env name="LOG_CHANNEL" value="single"/>
<env name="MEDIA_LIBRARY_IMAGE_SERVICE" value="A17\Twill\Services\MediaLibrary\Glide"/>
<env name="MEDIA_LIBRARY_LOCAL_PATH" value="media-library"/>
<env name="MEDIA_LIBRARY_ENDPOINT_TYPE" value="local"/>
<env name="FILE_LIBRARY_FILE_SERVICE" value="A17\Twill\Services\MediaLibrary\Glide"/>
<env name="FILE_LIBRARY_LOCAL_PATH" value="file-library"/>
<env name="FILE_LIBRARY_ENDPOINT_TYPE" value="local"/>
<env name="IMGIX_SOURCE_HOST" value=""/>
<env name="IMGIX_USE_HTTPS" value=""/>
<env name="IMGIX_USE_SIGNED_URLS" value=""/>
<env name="IMGIX_SIGN_KEY" value=""/>
<env name="GLIDE_SOURCE" value="storage/app/public/media-library"/>
<env name="GLIDE_CACHE" value="storage/app/twill/cache"/>
<env name="GLIDE_CACHE_PATH_PREFIX" value="glide_cache"/>
<env name="GLIDE_BASE_URL" value="http://twill.test"/>
<env name="GLIDE_BASE_PATH" value="storage/media-library"/>
<env name="GLIDE_USE_SIGNED_URLS" value="false"/>
<env name="GLIDE_SIGN_KEY" value=""/>
</php>
</phpunit>