Files
scylladb/test/auth_cluster/conftest.py
Andrei Chekun 8bf62a086f test.py: Create central conftest.
Central conftest allows to reduce code duplication and execute all tests
with one pytest command

Closes scylladb/scylladb#21454
2024-11-24 20:09:48 +02:00

13 lines
408 B
Python

#
# Copyright (C) 2023-present ScyllaDB
#
# SPDX-License-Identifier: AGPL-3.0-or-later
#
# This file configures pytest for all tests in this directory, and also
# defines common test fixtures for all of them to use
from pytest import Config
from test.topology.conftest import *
def pytest_configure(config: Config):
config.option.auth_username = 'cassandra'
config.option.auth_password = 'cassandra'