forked from esazykin/laravel-clickhouse
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathphpunit.xml
27 lines (27 loc) · 1 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" backupGlobals="false" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.2/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
<coverage>
<report>
<clover outputFile="./build/logs/clover.xml"/>
<html outputDirectory="./build/html/"/>
</report>
</coverage>
<testsuites>
<testsuite name="Clickhouse Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
<logging/>
<php>
<env name="CLICKHOUSE_HOST" value="localhost"/>
<env name="CLICKHOUSE_PORT" value="8123"/>
<env name="CLICKHOUSE_DATABASE" value="default"/>
<env name="CLICKHOUSE_USERNAME" value="default"/>
<env name="CLICKHOUSE_PASSWORD" value=""/>
</php>
<source>
<include>
<directory suffix=".php">src/</directory>
</include>
</source>
</phpunit>