mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-22 15:52:13 +00:00
17 lines
410 B
Python
17 lines
410 B
Python
#
|
|
# Copyright (C) 2022-present ScyllaDB
|
|
#
|
|
# SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.1
|
|
#
|
|
|
|
from test.pylib.suite.python import add_host_option, add_cql_connection_options
|
|
|
|
# Add required fixtures:
|
|
from test.cqlpy.conftest import host, cql
|
|
from test.cql.conftest import cql_test_connection
|
|
|
|
|
|
def pytest_addoption(parser):
|
|
add_host_option(parser)
|
|
add_cql_connection_options(parser)
|