mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 19:14:30 +00:00
13 lines
489 B
Python
13 lines
489 B
Python
import os
|
|
|
|
def argparser(parser):
|
|
"""Default argument parser for regressions.
|
|
"""
|
|
parser.add_argument("--local",
|
|
action="store_true",
|
|
help="run regression in local mode", default=False)
|
|
|
|
parser.add_argument("--clickhouse-binary-path",
|
|
type=str, dest="clickhouse_binary_path",
|
|
help="path to ClickHouse binary, default: /usr/bin/clickhouse", metavar="path",
|
|
default=os.getenv("CLICKHOUSE_TESTS_SERVER_BIN_PATH", "/usr/bin/clickhouse")) |