Files
scylladb/test/pylib/cql_repl/conftest.py
Konstantin Osipov c119087719 test.py: implement cql_repl
Implement a pytest which would run CQL commands against
a scylla server and pretty print server output.

Will be used in existing Approval tests in subsequent patches.
2022-05-25 20:26:42 +03:00

13 lines
331 B
Python

#
# Copyright (C) 2022-present ScyllaDB
#
# SPDX-License-Identifier: AGPL-3.0-or-later
#
def pytest_addoption(parser) -> None:
parser.addoption("--input", action="store", default="",
help="Input file")
parser.addoption("--output", action="store", default="",
help="Output file")