frostfs-sdk-python/tests/conftest.py
Ilyas Niyazov f8465e5b99 Added create container grpc method
Signed-off-by: Ilyas Niyazov <i.niyazov@yadro.com>
2025-03-10 13:46:17 +03:00

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()