ClickHouse/tests/testflows/regression.py
2020-07-02 17:58:13 +02:00

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()