mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
20 lines
442 B
Python
Executable File
20 lines
442 B
Python
Executable File
#!/usr/bin/env python3
|
|
import sys
|
|
from testflows.core import *
|
|
|
|
append_path(sys.path, "."),
|
|
|
|
from helpers.argparser import argparser
|
|
|
|
@TestModule
|
|
@Name("clickhouse")
|
|
@ArgumentParser(argparser)
|
|
def regression(self, local, clickhouse_binary_path):
|
|
"""ClickHouse regression.
|
|
"""
|
|
Feature(test=load("example.regression", "regression"))(
|
|
local=local, clickhouse_binary_path=clickhouse_binary_path)
|
|
|
|
if main():
|
|
regression()
|