Added create container grpc method

Signed-off-by: Ilyas Niyazov <i.niyazov@yadro.com>
This commit is contained in:
Ilyas Niyazov 2025-03-10 13:46:17 +03:00
parent 9a1b5d778b
commit f8465e5b99
34 changed files with 532 additions and 53 deletions

View file

@ -1,8 +1,24 @@
import pytest
from tests.helpers.models import ClientCryptograpy
# 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()