-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathphpunit-ch21.xml
More file actions
35 lines (32 loc) · 1.08 KB
/
phpunit-ch21.xml
File metadata and controls
35 lines (32 loc) · 1.08 KB
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="vendor/phpunit/phpunit/phpunit.xsd"
beStrictAboutChangesToGlobalState="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutTodoAnnotatedTests="true"
colors="true"
verbose="true"
>
<testsuite name="ClickHouse 21.x">
<directory>tests</directory>
<exclude>tests/ClickHouse26</exclude>
</testsuite>
<groups>
<exclude>
<group>flaky</group>
</exclude>
</groups>
<filter>
<whitelist>
<directory suffix=".php">src</directory>
</whitelist>
</filter>
<php>
<env name="CLICKHOUSE_HOST" value="127.0.0.1" />
<env name="CLICKHOUSE_PORT" value="8123" />
<env name="CLICKHOUSE_USER" value="default" />
<env name="CLICKHOUSE_PASSWORD" value="" />
<env name="CLICKHOUSE_DATABASE" value="php_clickhouse" />
<env name="CLICKHOUSE_TMPPATH" value="/tmp" />
</php>
</phpunit>