[fix] s3 load

Signed-off-by: Мария Малыгина <m.malygina@MacBook-Pro-Maria.local>
pull/1/head
Мария Малыгина 2022-12-26 18:02:18 +03:00 committed by Maria Fedorova
parent 2151f0e446
commit ad2eafd230
2 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ def init_s3_client(
wallet_path = service_configs[0].attributes["wallet_path"]
neogo_cli_config = host.get_cli_config("neo-go")
neogo_wallet = NeoGo(shell=host.get_shell(), neo_go_exec_path=neogo_cli_config.exec_path).wallet
dump_keys_output = neogo_wallet.dump_keys(wallet_config=wallet_path).stdout
dump_keys_output = neogo_wallet.dump_keys(wallet=wallet_path, wallet_config=None).stdout
public_key = str(re.search(r":\n(?P<public_key>.*)", dump_keys_output).group("public_key"))
node_endpoint = service_configs[0].attributes["rpc_endpoint"]
# prompt_pattern doesn't work at the moment

View File

@ -52,7 +52,7 @@ class TestLoad(ClusterTestBase):
@pytest.fixture(scope="session", autouse=True)
def init_s3_client(self, hosting: Hosting):
if "s3" in LOAD_TYPE.lower():
if "s3" in list(map(lambda x: x.lower(), LOAD_TYPE)):
init_s3_client(
load_nodes=LOAD_NODES,
login=LOAD_NODE_SSH_USER,