diff --git a/pytest_tests/steps/load.py b/pytest_tests/steps/load.py index 356f963..9cd2fbd 100644 --- a/pytest_tests/steps/load.py +++ b/pytest_tests/steps/load.py @@ -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.*)", dump_keys_output).group("public_key")) node_endpoint = service_configs[0].attributes["rpc_endpoint"] # prompt_pattern doesn't work at the moment diff --git a/pytest_tests/testsuites/load/test_load.py b/pytest_tests/testsuites/load/test_load.py index 08cbd32..d0e220f 100644 --- a/pytest_tests/testsuites/load/test_load.py +++ b/pytest_tests/testsuites/load/test_load.py @@ -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,