24 lines
589 B
Python
24 lines
589 B
Python
import pytest
|
|
|
|
# from frostfs_sdk.client.frostfs_client import FrostfsClient
|
|
# from frostfs_sdk.client.models.client_settings import ClientSettings
|
|
from tests.helpers.models import ClientCryptograpy, Helpers
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def client_cryptography():
|
|
return ClientCryptograpy()
|
|
|
|
|
|
# @pytest.fixture(scope="session")
|
|
# def default_frostfs_client():
|
|
# client_settings = ClientSettings(
|
|
# wif="",
|
|
# address="10.78.128.25:8080"
|
|
# )
|
|
# return FrostfsClient(client_settings)
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def helpers():
|
|
return Helpers()
|