mirror of
https://github.com/scylladb/scylladb.git
synced 2026-06-03 21:47:10 +00:00
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.
13 lines
331 B
Python
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")
|