mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
f959c29be6
This reverts commit 96869d405f
.
15 lines
327 B
Python
15 lines
327 B
Python
import os
|
|
import sys
|
|
|
|
CURDIR = os.path.dirname(os.path.realpath(__file__))
|
|
|
|
sys.path.insert(0, os.path.join(CURDIR))
|
|
|
|
import httpexpect
|
|
|
|
def client(request, name='', log=None):
|
|
client = httpexpect.spawn({'host':'localhost','port':8123}, request)
|
|
client.logger(log, prefix=name)
|
|
client.timeout(20)
|
|
return client
|