-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpunit.xml
35 lines (34 loc) · 1.43 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd" bootstrap="vendor/autoload.php" colors="true" cacheDirectory=".phpunit.cache">
<testsuites>
<testsuite name="EloquentTests">
<directory>tests/EloquentTests</directory>
</testsuite>
<testsuite name="RelationshipsTests">
<directory>tests/RelationshipsTests</directory>
</testsuite>
<testsuite name="SchemaTests">
<directory>tests/SchemaTests</directory>
</testsuite>
</testsuites>
<coverage/>
<php>
<env name="APP_ENV" value="testing"/>
<env name="BCRYPT_ROUNDS" value="10"/>
<env name="CACHE_DRIVER" value="array"/>
<!-- <env name="DB_CONNECTION" value="sqlite"/> -->
<!-- <env name="DB_DATABASE" value=":memory:"/> -->
<!-- <env name="ES_HOSTS" value="http://elasticsearch:9200"/>-->
<!-- <env name="ES_AUTH_TYPE" value="http"/>-->
<env name="ES_INDEX_PREFIX" value="es_tests"/>
<env name="MAIL_MAILER" value="array"/>
<env name="QUEUE_CONNECTION" value="sync"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="TELESCOPE_ENABLED" value="false"/>
</php>
<source>
<include>
<directory suffix=".php">./app</directory>
</include>
</source>
</phpunit>