mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 19:14:30 +00:00
14 lines
383 B
Bash
Executable File
14 lines
383 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
dockerd --host=unix:///var/run/docker.sock --host=tcp://0.0.0.0:2375 &>/var/log/somefile &
|
|
|
|
sleep 3 # to actual start
|
|
|
|
echo "Start tests"
|
|
export CLICKHOUSE_TESTS_SERVER_BIN_PATH=/clickhouse
|
|
export CLICKHOUSE_TESTS_CLIENT_BIN_PATH=/clickhouse
|
|
export CLICKHOUSE_TESTS_BASE_CONFIG_DIR=/clickhouse-config
|
|
|
|
cd /ClickHouse/dbms/tests/integration && pytest $PYTEST_OPTS
|